Forgot this ... seems to be running by now ...

This commit is contained in:
Angelo Salese 2011-09-10 16:29:15 +00:00
parent 7f2a5e0aca
commit bb3cb28913
2 changed files with 4 additions and 1 deletions

View File

@ -126,6 +126,10 @@ static UINT8 hc11_regs_r(hc11_state *cpustate, UINT32 address)
return cpustate->tcnt >> 8;
case 0x0f:
return cpustate->tcnt & 0xff;
case 0x16: /* TOC1 */
return cpustate->toc1 >> 8;
case 0x17:
return cpustate->toc1 & 0xff;
case 0x23:
return cpustate->tflg1;
case 0x28: /* SPCR1 */

View File

@ -54,7 +54,6 @@ static READ8_HANDLER(namco30test_pcbid_r)
static ADDRESS_MAP_START( namco_30test_map, AS_PROGRAM, 8 )
AM_RANGE(0x0000, 0x007f) AM_RAM // internal I/O
AM_RANGE(0x0080, 0x037f) AM_RAM // internal RAM
AM_RANGE(0x2000, 0x2010) AM_RAM // test, remove me
AM_RANGE(0x0d80, 0x0d8f) AM_READ(namco30test_pcbid_r)
AM_RANGE(0x8000, 0xffff) AM_ROM
ADDRESS_MAP_END