mirror of
https://github.com/pret/pokepinballrs.git
synced 2026-04-25 15:49:08 -05:00
34 lines
1.0 KiB
C
34 lines
1.0 KiB
C
#ifndef GUARD_CONSTANTS_CHARACTERS_H
|
|
#define GUARD_CONSTANTS_CHARACTERS_H
|
|
|
|
#define CHAR_0_FONT_0 0x00
|
|
#define CHAR_1_FONT_0 0x01
|
|
#define CHAR_2_FONT_0 0x02
|
|
#define CHAR_3_FONT_0 0x03
|
|
#define CHAR_4_FONT_0 0x04
|
|
#define CHAR_5_FONT_0 0x05
|
|
#define CHAR_6_FONT_0 0x06
|
|
#define CHAR_7_FONT_0 0x07
|
|
#define CHAR_8_FONT_0 0x08
|
|
#define CHAR_9_FONT_0 0x09
|
|
#define CHAR_DASH_FONT_0 0x0B
|
|
|
|
#define CHAR_0_FONT_1 0x20
|
|
#define CHAR_1_FONT_1 0x21
|
|
#define CHAR_2_FONT_1 0x22
|
|
#define CHAR_3_FONT_1 0x23
|
|
#define CHAR_4_FONT_1 0x24
|
|
#define CHAR_5_FONT_1 0x25
|
|
#define CHAR_6_FONT_1 0x26
|
|
#define CHAR_7_FONT_1 0x27
|
|
#define CHAR_8_FONT_1 0x28
|
|
#define CHAR_9_FONT_1 0x29
|
|
#define CHAR_SPACE_FONT_1 0x2A
|
|
#define CHAR_DASH_FONT_1 0x2B
|
|
|
|
#define CHAR_BALL_NOT_CAUGHT 0x1B8
|
|
|
|
#define CHAR_BALL_CAUGHT 0x1BA
|
|
|
|
#endif // GUARD_CONSTANTS_CHARACTERS_H
|