From 5ab86143c9d0b0c86411f7067cf9649f7f0d3311 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 16 Feb 2026 21:13:41 -0500 Subject: New UI stuff, not yet working. --- src/addrs.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/addrs.c (limited to 'src/addrs.c') 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) +}; -- cgit v1.2.3