blob: 47d8c38248cc7790447eb98c4ecd5bd44f81ac11 [file] [log] [blame]
Simon Glass056f0ef2021-11-03 21:09:16 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 Google LLC
4 *
5 * Simple program including some embedded data that can be accessed by binman.
6 * This is used by binman tests.
7 */
8
9int first[10] = {1};
10int embed[3] __attribute__((section(".embed"))) = {0x1234, 0x5678};
11int second[10] = {1};
12
13int main(void)
14{
15 return 0;
16}