From ec3bbc3ff1274fd4d0c291fdce5aca8ef1e8c32c Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sun, 1 Mar 2026 02:46:11 -0500 Subject: show both status lines, derp. --- font_dl.asm | 2 ++ src/addrs.c | 2 +- uitest/test.c | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/font_dl.asm b/font_dl.asm index 28599e8..c49d53d 100644 --- a/font_dl.asm +++ b/font_dl.asm @@ -69,9 +69,11 @@ dl_bot_lms .byte $02, $02, $02, $02, $02, $02, $02, $02 .byte $02, $02, $02, $02, $02, $02, $02, $02 .byte $02, $02, $02, $02, $02, $02 ; 22 GR.0 lines + .byte $00 .byte $42 ; LMS GR.0 dl_status_lms .word scr0_bot+920 ; line 23 + .byte $02 .byte $41 ; JVB .word dlist_bot diff --git a/src/addrs.c b/src/addrs.c index 5154109..c130cb1 100644 --- a/src/addrs.c +++ b/src/addrs.c @@ -5,7 +5,7 @@ u8 *dlist_bot = u8p(DLIST_BOT_ADDR); u16 *dlist_top_lms = u16p(0xbfa4); u16 *dlist_bot_lms = u16p(0xbfd4); -u16 *dlist_status_lms = u16p(0xbfed); +u16 *dlist_status_lms = u16p(0xbfee); u8 *edit_box = u8p(0x0600); /* up to 256 bytes (page 6) */ u8 *rx_buf = u8p(0xa000); /* 512 bytes */ diff --git a/uitest/test.c b/uitest/test.c index a3ae1a9..5e13559 100644 --- a/uitest/test.c +++ b/uitest/test.c @@ -7,6 +7,7 @@ void got_line(void) { scr_print(SCR_CURR, edit_box); + scr_putc(SCR_CURR, '\n'); } int main() { -- cgit v1.2.3