SLOT-1-Boot-Menu/include/font.h
Lillian Skinner 2e7776907a
Add program
2024-02-01 00:42:11 -05:00

32 lines
777 B
C

/*---------------------------------------------------------------------------*
Project: SLOT-1 Boot Menu
File: font.h
This source code is derived from "os_jump" in the TwlSDK
$Date:: 2024-02-01#$
$Author: Lillian Skinner (rmc) $
*---------------------------------------------------------------------------*/
#ifndef FONT_H_
#define FONT_H_
#ifdef __cplusplus
extern "C" {
#endif
/*===========================================================================*/
#include <nitro/types.h>
extern const u32 d_CharData[8 * 256];
extern const u32 d_PaletteData[8 * 16];
/*===========================================================================*/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* FONT_H_ */