xref: /openbmc/u-boot/tools/binman/test/u_boot_ucode_ptr.lds (revision 3eaaa718e7706634fee28ef6d75807a43d6f7df3)
1/*
2 * Copyright (c) 2016 Google, Inc
3 *
4 * SPDX-License-Identifier:      GPL-2.0+
5 */
6
7OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
8OUTPUT_ARCH(i386)
9ENTRY(_start)
10
11SECTIONS
12{
13	. = 0xfffffdf0;
14	_start = .;
15	.ucode : {
16		*(.ucode)
17	}
18}
19