From 50419c18df9299345d98b70dfaf0c7fe47a8f341 Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Sat, 29 Oct 2022 21:17:06 +0200 Subject: [PATCH] PDP11: Fix TVSEL register. It's sometimes used as a 16-bit register. --- PDP11/pdp11_tv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDP11/pdp11_tv.c b/PDP11/pdp11_tv.c index 4cadb7a5..2ee0835d 100644 --- a/PDP11/pdp11_tv.c +++ b/PDP11/pdp11_tv.c @@ -53,7 +53,7 @@ static uint16 COLORA; static uint8 tv_source[256]; static uint8 tv_display[256]; static uint16 TVINCR; -static uint8 TVSEL; /* Frame buffer select. */ +static uint16 TVSEL; /* Frame buffer select. */ static uint16 TVRADR; static uint16 tvdata; static uint16 TVWC;