mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
allow you to skip the CMOS error screen by pressing the S key (nw)
This commit is contained in:
parent
f80df576bc
commit
8571be2cb1
@ -561,7 +561,12 @@ static ADDRESS_MAP_START(savquest_io, AS_IO, 32, savquest_state)
|
||||
// AM_RANGE(0x5000, 0x5007) // routes to port $eb
|
||||
ADDRESS_MAP_END
|
||||
|
||||
#define AT_KEYB_HELPER(bit, text, key1) \
|
||||
PORT_BIT( bit, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_NAME(text) PORT_CODE(key1)
|
||||
|
||||
static INPUT_PORTS_START( savquest )
|
||||
PORT_START("pc_keyboard_3")
|
||||
AT_KEYB_HELPER( 0x0800, "F1", KEYCODE_S ) /* F1 3B BB */
|
||||
INPUT_PORTS_END
|
||||
|
||||
void savquest_state::machine_start()
|
||||
|
Loading…
Reference in New Issue
Block a user