Previous 199869 Revisions Next

r23648 Wednesday 12th June, 2013 at 11:03:09 UTC by Robbbert
attackfc: added notes
[src/mame/drivers]8080bw.c

trunk/src/mame/drivers/8080bw.c
r23647r23648
30283028  video: 15625Hz
30293029
30303030  TODO: sound
3031  PORT 02 : 10 while your missile is on-screen
3032  PORT 04 : 01 while game is playing. Sound enable.
3033  PORT 05 : Watchdog?
3034  PORT 06 : 01=Helicopter; 02=Tank; 03=Motorcycle
3035            08=Explosion; 10=Walking
30313036
3037
30323038*****************************************************/
30333039
30343040static ADDRESS_MAP_START( attackfc_io_map, AS_IO, 8, _8080bw_state )
30353041   AM_RANGE(0x00, 0x00) AM_READ_PORT("IN0")
30363042   AM_RANGE(0x02, 0x02) AM_WRITENOP // lamp?
30373043   AM_RANGE(0x03, 0x03) AM_DEVREADWRITE("mb14241", mb14241_device, shift_result_r, shift_data_w)
3038   AM_RANGE(0x04, 0x04) AM_WRITENOP // coinlock?
3039   AM_RANGE(0x05, 0x05) AM_WRITENOP // sound?
3044   AM_RANGE(0x04, 0x04) AM_WRITENOP // sound enable?
3045   AM_RANGE(0x05, 0x05) AM_WRITENOP // watchdog?
30403046   AM_RANGE(0x06, 0x06) AM_WRITENOP // sound?
30413047   AM_RANGE(0x07, 0x07) AM_DEVWRITE("mb14241", mb14241_device, shift_count_w)
30423048ADDRESS_MAP_END

Previous 199869 Revisions Next


© 1997-2024 The MAME Team