aboutsummaryrefslogtreecommitdiffstats
path: root/assets.c
blob: f3254e2db114337993a099ce22447259d05a6417 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
 * SPDX-License-Identifier: MIT
 */
#include "assets.h"

extern char _binary_assets_bie_start[];

#define BIE_ENTRY(name, pos, size) struct asset name = { &_binary_assets_bie_start[pos], size };
#include "assets.idx"