From ea3383796bc264b6b9cee01128230f992afcbd6f Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 13 Dec 2014 23:56:19 +0000 Subject: [PATCH] mtx: correct VDP Ports 1 and 2 not 0 and 1 --- Kernel/platform-mtx/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-mtx/main.c b/Kernel/platform-mtx/main.c index 9265022b..8557082f 100644 --- a/Kernel/platform-mtx/main.c +++ b/Kernel/platform-mtx/main.c @@ -5,7 +5,7 @@ #include uint16_t ramtop = PROGTOP; -uint16_t vdpport = 0x01 + 256 * 40; /* port and width */ +uint16_t vdpport = 0x02 + 256 * 40; /* port and width */ void pagemap_init(void) { -- 2.34.1