mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-11-22 18:49:20 +01:00
17 lines
251 B
C
17 lines
251 B
C
#ifndef ASSETS_H__
|
|
#define ASSETS_H__
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
#define ASSET(n) \
|
|
extern uint8_t assets_##n[] __attribute__((section(".data"))); \
|
|
extern int assets_##n##_size[] __attribute__((section(".data")))
|
|
|
|
|
|
ASSET(FiraMonoBold);
|
|
|
|
|
|
#endif
|