diff options
Diffstat (limited to 'src/mess/drivers/junior.c')
-rw-r--r-- | src/mess/drivers/junior.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/drivers/junior.c b/src/mess/drivers/junior.c index 247b2cd9d63..d074534e772 100644 --- a/src/mess/drivers/junior.c +++ b/src/mess/drivers/junior.c @@ -60,7 +60,7 @@ static ADDRESS_MAP_START(junior_mem, AS_PROGRAM, 8, junior_state) AM_RANGE(0x0000, 0x03ff) AM_RAM // 1K RAM AM_RANGE(0x1a00, 0x1a7f) AM_RAM // 6532 RAM AM_RANGE(0x1a80, 0x1aff) AM_DEVREADWRITE_LEGACY("riot", riot6532_r, riot6532_w) - AM_RANGE(0x1c00, 0x1fff) AM_ROM // Monitor + AM_RANGE(0x1c00, 0x1fff) AM_ROM // Monitor ADDRESS_MAP_END @@ -73,7 +73,7 @@ INPUT_CHANGED_MEMBER(junior_state::junior_reset) /* Input ports */ static INPUT_PORTS_START( junior ) -PORT_START("LINE0") /* IN0 keys row 0 */ +PORT_START("LINE0") /* IN0 keys row 0 */ PORT_BIT( 0x80, 0x00, IPT_UNUSED ) PORT_BIT( 0x40, 0x40, IPT_KEYBOARD ) PORT_NAME("0") PORT_CODE(KEYCODE_0) PORT_CHAR('0') PORT_BIT( 0x20, 0x20, IPT_KEYBOARD ) PORT_NAME("1") PORT_CODE(KEYCODE_1) PORT_CHAR('1') @@ -83,7 +83,7 @@ PORT_START("LINE0") /* IN0 keys row 0 */ PORT_BIT( 0x02, 0x02, IPT_KEYBOARD ) PORT_NAME("5") PORT_CODE(KEYCODE_5) PORT_CHAR('5') PORT_BIT( 0x01, 0x01, IPT_KEYBOARD ) PORT_NAME("6") PORT_CODE(KEYCODE_6) PORT_CHAR('6') - PORT_START("LINE1") /* IN1 keys row 1 */ + PORT_START("LINE1") /* IN1 keys row 1 */ PORT_BIT( 0x80, 0x00, IPT_UNUSED ) PORT_BIT( 0x40, 0x40, IPT_KEYBOARD ) PORT_NAME("7") PORT_CODE(KEYCODE_7) PORT_CHAR('7') PORT_BIT( 0x20, 0x20, IPT_KEYBOARD ) PORT_NAME("8") PORT_CODE(KEYCODE_8) PORT_CHAR('8') @@ -93,7 +93,7 @@ PORT_START("LINE0") /* IN0 keys row 0 */ PORT_BIT( 0x02, 0x02, IPT_KEYBOARD ) PORT_NAME("C") PORT_CODE(KEYCODE_C) PORT_CHAR('C') PORT_BIT( 0x01, 0x01, IPT_KEYBOARD ) PORT_NAME("D") PORT_CODE(KEYCODE_D) PORT_CHAR('D') - PORT_START("LINE2") /* IN2 keys row 2 */ + PORT_START("LINE2") /* IN2 keys row 2 */ PORT_BIT( 0x80, 0x00, IPT_UNUSED ) PORT_BIT( 0x40, 0x40, IPT_KEYBOARD ) PORT_NAME("E") PORT_CODE(KEYCODE_E) PORT_CHAR('E') PORT_BIT( 0x20, 0x20, IPT_KEYBOARD ) PORT_NAME("F") PORT_CODE(KEYCODE_F) PORT_CHAR('F') @@ -103,7 +103,7 @@ PORT_START("LINE0") /* IN0 keys row 0 */ PORT_BIT( 0x02, 0x02, IPT_KEYBOARD ) PORT_NAME("GO") PORT_CODE(KEYCODE_X) PORT_CHAR('X') PORT_BIT( 0x01, 0x01, IPT_KEYBOARD ) PORT_NAME("PC") PORT_CODE(KEYCODE_F6) - PORT_START("LINE3") /* IN3 STEP and RESET keys, MODE switch */ + PORT_START("LINE3") /* IN3 STEP and RESET keys, MODE switch */ PORT_BIT( 0x80, 0x00, IPT_UNUSED ) PORT_BIT( 0x40, 0x40, IPT_KEYBOARD ) PORT_NAME("sw1: ST") PORT_CODE(KEYCODE_F7) PORT_BIT( 0x20, 0x20, IPT_KEYBOARD ) PORT_NAME("sw2: RST") PORT_CODE(KEYCODE_F3) PORT_CHANGED_MEMBER(DEVICE_SELF, junior_state, junior_reset, NULL) |