trunk/src/mess/drivers/eti660.c
| r26410 | r26411 | |
| 10 | 10 | - quickload |
| 11 | 11 | - color on |
| 12 | 12 | |
| 13 | - keyboard not working |
| 14 | - foreground is black, according to the construction article it should be white. |
| 15 | - it is supposed to reset itself at boot, but that isn't working. You must press R. |
| 16 | |
| 13 | 17 | */ |
| 14 | 18 | |
| 15 | 19 | #include "includes/eti660.h" |
| r26410 | r26411 | |
| 42 | 46 | /* Memory Maps */ |
| 43 | 47 | |
| 44 | 48 | static ADDRESS_MAP_START( eti660_map, AS_PROGRAM, 8, eti660_state ) |
| 49 | ADDRESS_MAP_GLOBAL_MASK(0xfff) |
| 45 | 50 | AM_RANGE(0x0000, 0x03ff) AM_ROM |
| 46 | 51 | AM_RANGE(0x0400, 0x0fff) AM_RAM |
| 47 | | AM_RANGE(0x0c00, 0x0fff) AM_ROM |
| 48 | 52 | ADDRESS_MAP_END |
| 49 | 53 | |
| 50 | 54 | static ADDRESS_MAP_START( eti660_io_map, AS_IO, 8, eti660_state ) |
| r26410 | r26411 | |
| 184 | 188 | if (!BIT(m_keylatch, 2)) data &= m_pa2->read(); |
| 185 | 189 | if (!BIT(m_keylatch, 3)) data &= m_pa3->read(); |
| 186 | 190 | |
| 187 | | return data; |
| 191 | return data | m_keylatch; |
| 188 | 192 | } |
| 189 | 193 | |
| 190 | 194 | WRITE8_MEMBER( eti660_state::pia_pa_w ) |