blob: f865a9d9f6732e7a6dbb272fd9d649edf4fe3ab1 [file] [log] [blame]
Simon Glass56509842017-11-12 21:52:25 -07001/*
2 * Copyright (c) 2016 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 *
6 * Simple program to create a _dt_ucode_base_size symbol which can be read
7 * by 'nm'. This is used by binman tests.
8 */
9
10int bss_data[10];
11int __bss_size = sizeof(bss_data);
12
13int main()
14{
15 bss_data[2] = 2;
16
17 return 0;
18}