Added Kingston MC64 memory expansion card (adf 71d0) which allows up to 64MB of RAM in the MCA-based 386DX-based models as well as a IBM CPU planar upgrade which allows 486DX cpu's to be used on the 386DX-based 80 models.

Fixed missing part of the width in the Compaq CGA cards.
This commit is contained in:
TC1995
2021-12-23 17:38:58 +01:00
parent 0126d7dbef
commit 3975957590
3 changed files with 58 additions and 19 deletions

View File

@@ -315,8 +315,8 @@ compaq_cga_poll(void *p)
compaq_cga_log("Lastline %i Firstline %i %i\n", self->cga.lastline,
self->cga.firstline ,self->cga.lastline - self->cga.firstline);
if (self->cga.cgamode & 1) x = (self->cga.crtc[1] << 3);
else x = (self->cga.crtc[1] << 4);
if (self->cga.cgamode & 1) x = (self->cga.crtc[1] << 3) + 16;
else x = (self->cga.crtc[1] << 4) + 16;
self->cga.lastline++;