mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Small fix to mdtsel
This commit is contained in:
parent
d495698010
commit
3d7c73ea23
2 changed files with 11 additions and 0 deletions
|
@ -56,6 +56,7 @@ void maple_dc_device::device_start()
|
|||
save_item(NAME(mden));
|
||||
save_item(NAME(mdst));
|
||||
save_item(NAME(msys));
|
||||
save_item(NAME(mdtsel));
|
||||
save_item(NAME(dma_state));
|
||||
save_item(NAME(dma_adr));
|
||||
save_item(NAME(dma_port));
|
||||
|
@ -68,6 +69,7 @@ void maple_dc_device::device_reset()
|
|||
mden = 0;
|
||||
mdst = 0;
|
||||
msys = 0;
|
||||
mdtsel = 0;
|
||||
dma_state = DMA_IDLE;
|
||||
dma_adr = 0;
|
||||
dma_port = 0;
|
||||
|
|
|
@ -28,6 +28,15 @@
|
|||
|
||||
Note:
|
||||
- DC US and DC PAL flash ROMs are definitely hacked, they are set to have Chinese instead of Japanese.
|
||||
- gdi file for DCLP (a Dreamcast tester) doesn't have first two tracks info, they are:
|
||||
1 0 4 2048 FILE0001.DUP 0
|
||||
2 1798 0 2352 FILE0002.DUP 0
|
||||
serial i/o also fails on that, work ram addresses that needs to be patched with 0x0009 (nop) are:
|
||||
0xc0196da
|
||||
0xc0196ec
|
||||
FPU test:
|
||||
0xc03fe24 work ram flag check (1=error, 0=ok)
|
||||
|
||||
*/
|
||||
|
||||
#include "emu.h"
|
||||
|
|
Loading…
Reference in a new issue