From 7733bc826d9c8fe5abb99d55b9af41d269b12c86 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 9 Dec 2020 13:23:37 +0100 Subject: [PATCH] Fixed the new MMIO mapping size of the S3 Virge968, Paintbrush no longer hangs but does not display correctly, pending the implementation of the Video engine. --- src/video/vid_s3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video/vid_s3.c b/src/video/vid_s3.c index 0034ce843..5ed6236ad 100644 --- a/src/video/vid_s3.c +++ b/src/video/vid_s3.c @@ -2707,6 +2707,7 @@ s3_updatemapping(s3_t *s3) /* New MMIO. */ if (svga->crtc[0x53] & 0x08) { + pclog("New MMIO enabled at %08x, CRTC59 = %02x\n", s3->linear_base + 0x1000000, svga->crtc[0x59]); mem_mapping_set_addr(&s3->new_mmio_mapping, s3->linear_base + 0x1000000, 0x20000); } else { pclog("New MMIO disabled\n", s3->linear_base);