trunk/src/mame/drivers/8080bw.c
| r23647 | r23648 | |
| 3028 | 3028 | video: 15625Hz |
| 3029 | 3029 | |
| 3030 | 3030 | 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 |
| 3031 | 3036 | |
| 3037 | |
| 3032 | 3038 | *****************************************************/ |
| 3033 | 3039 | |
| 3034 | 3040 | static ADDRESS_MAP_START( attackfc_io_map, AS_IO, 8, _8080bw_state ) |
| 3035 | 3041 | AM_RANGE(0x00, 0x00) AM_READ_PORT("IN0") |
| 3036 | 3042 | AM_RANGE(0x02, 0x02) AM_WRITENOP // lamp? |
| 3037 | 3043 | 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? |
| 3040 | 3046 | AM_RANGE(0x06, 0x06) AM_WRITENOP // sound? |
| 3041 | 3047 | AM_RANGE(0x07, 0x07) AM_DEVWRITE("mb14241", mb14241_device, shift_count_w) |
| 3042 | 3048 | ADDRESS_MAP_END |