diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-02-16 21:13:41 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-02-16 21:13:41 -0500 |
| commit | 5ab86143c9d0b0c86411f7067cf9649f7f0d3311 (patch) | |
| tree | 44cc25726ebd6dd8c8e62876be25150a299a6c2f /src/addrs.c | |
| parent | 126c147638538ce54fc21a3803955b3693a99add (diff) | |
| download | fujinet-chat-5ab86143c9d0b0c86411f7067cf9649f7f0d3311.tar.gz | |
New UI stuff, not yet working.
Diffstat (limited to 'src/addrs.c')
| -rw-r--r-- | src/addrs.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/addrs.c b/src/addrs.c new file mode 100644 index 0000000..8c4ad1b --- /dev/null +++ b/src/addrs.c @@ -0,0 +1,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) +}; |
