summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2010-06-09 16:24:55 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2010-06-09 16:24:55 +0000
commit01dedfbf31948e954f6ee405d6575bb8e9cadf91 (patch)
tree861f3a909ff0953017a707c48960218deca3301c
parenteba2c140607c146d368e48539bd11e87fdfbeed6 (diff)
Fixed some CMOS errors in Tournament Solitaire, not worth mentioning
-rw-r--r--src/mame/drivers/pcat_dyn.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/pcat_dyn.c b/src/mame/drivers/pcat_dyn.c
index 72cf5b5d414..30bdc7c6c42 100644
--- a/src/mame/drivers/pcat_dyn.c
+++ b/src/mame/drivers/pcat_dyn.c
@@ -10,7 +10,9 @@ Jet Way Information Co. OP495SLC motherboard
preliminary driver by Angelo Salese
-- Gets stuck on 640K DRAM banking, beeps endlessly once it gets to memory test.
+TODO:
+- Returns CMOS checksum error, can't enter into BIOS setup screens to set that up ... it's certainly a MESS-to-MAME
+ conversion bug or a keyboard device issue, since it works fine in MESS.
********************************************************************************************************************/
@@ -371,7 +373,7 @@ static ADDRESS_MAP_START( pcat_io, ADDRESS_SPACE_IO, 32 )
AM_RANGE(0x0020, 0x003f) AM_DEVREADWRITE8("pic8259_1", pic8259_r, pic8259_w, 0xffffffff)
AM_RANGE(0x0040, 0x005f) AM_DEVREADWRITE8("pit8254", pit8253_r, pit8253_w, 0xffffffff)
AM_RANGE(0x0060, 0x006f) AM_READWRITE(kbdc8042_32le_r, kbdc8042_32le_w)
- AM_RANGE(0x0070, 0x007f) AM_RAM//READWRITE(mc146818_port32le_r, mc146818_port32le_w)
+ AM_RANGE(0x0070, 0x007f) AM_READWRITE(mc146818_port32le_r, mc146818_port32le_w)
AM_RANGE(0x0080, 0x009f) AM_READWRITE8(dma_page_select_r,dma_page_select_w, 0xffffffff)
AM_RANGE(0x00a0, 0x00bf) AM_DEVREADWRITE8("pic8259_2", pic8259_r, pic8259_w, 0xffffffff)
AM_RANGE(0x00c0, 0x00df) AM_DEVREADWRITE8("dma8237_2", i8237_r, i8237_w, 0xffff)