From b19906f32609eb79d3af7d92b32061be7ef51a95 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Sat, 26 May 2018 11:52:39 -0400 Subject: [PATCH] coco3: give all terminals some reasonable default ink/paper colors --- Kernel/platform-coco3/devtty.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Kernel/platform-coco3/devtty.c b/Kernel/platform-coco3/devtty.c index 82fd6e96..98ae7fd6 100644 --- a/Kernel/platform-coco3/devtty.c +++ b/Kernel/platform-coco3/devtty.c @@ -151,13 +151,13 @@ static struct mode_s mode[5] = { { 0x80, 0x08, 40, 21, 39, 20, &(fmodes[4]) }, }; - + static struct pty ptytab[] VSECTD = { { - (unsigned char *) 0x2000, - NULL, - 0, - {0, 0, 0, 0}, + (unsigned char *) 0x2000, + NULL, + 0, + {0, 0, 0, 0, 0, 0, 7, 0}, 0x10000 / 8, 0x04, 0x74, /* 80 column */ @@ -169,10 +169,10 @@ static struct pty ptytab[] VSECTD = { 050 }, { - (unsigned char *) 0x3000, - NULL, - 0, - {0, 0, 0, 0}, + (unsigned char *) 0x3000, + NULL, + 0, + {0, 0, 0, 0, 0, 0, 7, 0}, 0x11000 / 8, 0x04, 0x6c, /* 40 column */ -- 2.34.1