blob: 8c4ad1bd7e107b1d494b45654c6c166f0fccf72f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include "addrs.h"
u8 *dlist = u8p(DLIST_ADDR);
u16 *dlist_top_lms = u16p(0xa404);
u16 *dlist_bottom_lms = u16p(0xa41e);
u8 *status_box = u8p(0xa425); /* 80 bytes */
u8 *edit_box = u8p(0xa475); /* 160 bytes */
u8 *screen_addrs[7] = {
u8p(0xa538),
u8p(0xa8d0),
u8p(0xac68),
u8p(0xb000),
u8p(0xb398),
u8p(0xb730),
u8p(0xbac8)
};
u8 *screen_botlines[7] = {
u8p(0xa8a8),
u8p(0xac40),
u8p(0xafd8),
u8p(0xb370),
u8p(0xb708),
u8p(0xbaa0),
u8p(0xbe38)
};
|