From 10cd142cd142569dc9badf207d9b33c73c9386ce Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 18 Dec 2014 21:34:02 +0000 Subject: [PATCH] trs80: 80x24 not 80x25 --- Kernel/platform-trs80/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kernel/platform-trs80/config.h b/Kernel/platform-trs80/config.h index 16c6847e..2d4525ca 100644 --- a/Kernel/platform-trs80/config.h +++ b/Kernel/platform-trs80/config.h @@ -22,14 +22,14 @@ /* Vt definitions */ #define VT_BASE ((uint8_t *)0xF800) #define VT_WIDTH 80 -#define VT_HEIGHT 25 +#define VT_HEIGHT 24 #define VT_RIGHT 79 -#define VT_BOTTOM 24 +#define VT_BOTTOM 23 #define TICKSPERSEC 60 /* Ticks per second */ #define PROGBASE 0x0000 /* Base of user */ #define PROGLOAD 0x0100 /* Load and run here */ -#define PROGTOP 0x7D00 /* Top of program, base of U_DATA */ +#define PROGTOP 0x7D00 /* Top of program, base of U_DATA stash */ #define PROC_SIZE 32 /* Memory needed per process */ #define SWAP_SIZE 0x40 /* 32K in blocks */ -- 2.34.1