xref: /rk3399_rockchip-uboot/tools/binman/test/u_boot_ucode_ptr.lds (revision a9a4552a1c74e57a15d331bc9da00f046de9985f)
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