xref: /openbmc/u-boot/tools/binman/test/u_boot_ucode_ptr.lds (revision 1f4e25780a827de9526b5f60b8a574b1e4f45b9c)
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