diff --git a/src/devices/video/vid_cl54xx.c b/src/devices/video/vid_cl54xx.c index f01c095..4f327ff 100644 --- a/src/devices/video/vid_cl54xx.c +++ b/src/devices/video/vid_cl54xx.c @@ -631,11 +631,7 @@ gd54xx_out(uint16_t addr, uint8_t val, priv_t priv) val &= 0xbf; svga->seqregs[8] = val; break; - - case 0x09: - svga->seqregs[9] = 0xfc; - break; - + case 0x0a: if (is_5426(svga)) { svga->seqregs[0x0a] = val; @@ -1092,8 +1088,6 @@ gd54xx_in(uint16_t addr, priv_t priv) case 0x1b: case 0x1c: case 0x1d: case 0x1e: return dev->vclk_d[svga->seqaddr-0x1b]; } - - DBGLOG(0,"SEQREG read %x, value %x\n", (svga->seqaddr & 0x3f), svga->seqregs[svga->seqaddr & 0x3f]); return svga->seqregs[svga->seqaddr & 0x3f]; } break; diff --git a/src/devices/video/vid_svga.h b/src/devices/video/vid_svga.h index 29f5f43..828892b 100644 --- a/src/devices/video/vid_svga.h +++ b/src/devices/video/vid_svga.h @@ -8,7 +8,7 @@ * * Definitions for the generic SVGA driver. * - * Version: @(#)vid_svga.h 1.0.8 2019/05/17 + * Version: @(#)vid_svga.h 1.0.9 2019/10/21 * * Authors: Fred N. van Kempen, * Miran Grca, @@ -40,7 +40,7 @@ # define VIDEO_SVGA_H #define FLAG_EXTRA_BANKS 1 -#define FLAG_ADDR_BY8 2 +#define FLAG_ADDR_BY8 2 #define FLAG_LATCH8 4 typedef struct { diff --git a/src/devices/video/vid_svga_render.c b/src/devices/video/vid_svga_render.c index 0c48e9e..96b68ce 100644 --- a/src/devices/video/vid_svga_render.c +++ b/src/devices/video/vid_svga_render.c @@ -570,7 +570,6 @@ svga_render_8bpp_highres(svga_t *svga) } } -// VERIFY void svga_render_8bpp_gs_lowres(svga_t *svga) { int y_add = enable_overscan ? (overscan_y >> 1) : 0; @@ -712,7 +711,6 @@ void svga_render_8bpp_rgb_highres(svga_t *svga) svga->ma &= svga->vram_display_mask; } } -// VERIFY void svga_render_15bpp_lowres(svga_t *svga) @@ -789,7 +787,6 @@ svga_render_15bpp_highres(svga_t *svga) } } -//VERIFY void svga_render_mixed_lowres(svga_t *svga) { @@ -825,7 +822,6 @@ svga_render_mixed_lowres(svga_t *svga) svga->ma &= svga->vram_display_mask; } } -//VERIFY void svga_render_mixed_highres(svga_t *svga) diff --git a/src/devices/video/video.c b/src/devices/video/video.c index 4340ac6..129ce24 100644 --- a/src/devices/video/video.c +++ b/src/devices/video/video.c @@ -8,7 +8,7 @@ * * Main video-rendering module. * - * Version: @(#)video.c 1.0.31 2019/05/05 + * Version: @(#)video.c 1.0.32 2019/10/15 * * Authors: Fred N. van Kempen, * Miran Grca, diff --git a/src/devices/video/video.h b/src/devices/video/video.h index 18cc757..0b15a80 100644 --- a/src/devices/video/video.h +++ b/src/devices/video/video.h @@ -8,7 +8,7 @@ * * Definitions for the video controller module. * - * Version: @(#)video.h 1.0.37 2019/06/05 + * Version: @(#)video.h 1.0.38 2019/10/15 * * Authors: Fred N. van Kempen, * Miran Grca,