mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
56385c585f
Add a file that has two text sections at different addresses, so we can test this behaviour in binman, once added. Signed-off-by: Simon Glass <sjg@chromium.org>
20 lines
309 B
C
20 lines
309 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2022 Google LLC
|
|
*
|
|
* Program containing two text sections
|
|
*/
|
|
|
|
int __attribute__((section(".sram_data"))) data[29];
|
|
|
|
int __attribute__((section(".sram_code"))) calculate(int x)
|
|
{
|
|
data[0] = x;
|
|
|
|
return x * x;
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
return calculate(123);
|
|
}
|