Fixes (nw)

This commit is contained in:
Olivier Galibert 2018-02-12 19:58:55 +01:00
parent 22d1332b25
commit ca33628881
2 changed files with 4 additions and 2 deletions

View File

@ -263,7 +263,8 @@ ADDRESS_MAP_START(fromanc2_state::fromanc4_main_map)
AM_RANGE(0xe30000, 0xe30013) AM_WRITENOP // ???
AM_RANGE(0xe40000, 0xe40013) AM_WRITENOP // ???
AM_RANGE(0xe50000, 0xe5000f) AM_DEVREAD8("uart", ns16550_device, ins8250_r, 0x00ff) AM_WRITE(uart_w) // EXT-COMM PORT ?
AM_RANGE(0xe50000, 0xe5000f) AM_DEVREAD8("uart", ns16550_device, ins8250_r, 0x00ff) // EXT-COMM PORT ?
AM_RANGE(0xe50000, 0xe5000f) AM_WRITE(uart_w) // EXT-COMM PORT ?
ADDRESS_MAP_END

View File

@ -721,7 +721,8 @@ ADDRESS_MAP_END
ADDRESS_MAP_START(gaelco3d_state::adsp_data_map)
AM_RANGE(0x0000, 0x0001) AM_WRITE(adsp_rombank_w)
AM_RANGE(0x0000, 0x1fff) AM_ROMBANK("bank1")
AM_RANGE(0x2000, 0x2000) AM_DEVREAD8("soundlatch", generic_latch_8_device, read, 0x00ff) AM_WRITE(sound_status_w)
AM_RANGE(0x2000, 0x2000) AM_DEVREAD8("soundlatch", generic_latch_8_device, read, 0x00ff)
AM_RANGE(0x2000, 0x2000) AM_WRITE(sound_status_w)
AM_RANGE(0x3800, 0x39ff) AM_RAM AM_SHARE("adsp_fastram") /* 512 words internal RAM */
AM_RANGE(0x3fe0, 0x3fff) AM_WRITE(adsp_control_w) AM_SHARE("adsp_regs")
ADDRESS_MAP_END