From 62d381065ec524e9947da62f68a3d4e8094f12c0 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 21 Feb 2023 19:35:11 -0500 Subject: [PATCH] Change 9938 identification number. --- Components/9918/Implementation/9918.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Components/9918/Implementation/9918.cpp b/Components/9918/Implementation/9918.cpp index f5009204d..87456ed79 100644 --- a/Components/9918/Implementation/9918.cpp +++ b/Components/9918/Implementation/9918.cpp @@ -1059,11 +1059,11 @@ uint8_t Base::read_register() { // b7 = light pen; set when light is detected, reset on read; // or: mouse button 2 currently down. // b6 = light pen button or mouse button 1. - // b5–b1 = VDP identification (1 = 9938; 2 = 9958) + // b5–b1 = VDP identification (0 = 9938; 2 = 9958) // b0 = set when the VDP reaches the line provided in the line interrupt register. // Reset upon read. const uint8_t result = - (personality == Personality::V9938 ? 0x2 : 0x4) | + (personality == Personality::V9938 ? 0x0 : 0x4) | (line_interrupt_pending_ ? 0x01 : 0x00); line_interrupt_pending_ = false;