| Previous | 199869 Revisions | Next |
| r23754 Monday 17th June, 2013 at 19:41:30 UTC by smf |
|---|
| allow you to skip the CMOS error screen by pressing the S key (nw) |
| [src/mame/drivers] | savquest.c |
| r23753 | r23754 | |
|---|---|---|
| 561 | 561 | // AM_RANGE(0x5000, 0x5007) // routes to port $eb |
| 562 | 562 | ADDRESS_MAP_END |
| 563 | 563 | |
| 564 | #define AT_KEYB_HELPER(bit, text, key1) \ | |
| 565 | PORT_BIT( bit, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_NAME(text) PORT_CODE(key1) | |
| 566 | ||
| 564 | 567 | static INPUT_PORTS_START( savquest ) |
| 568 | PORT_START("pc_keyboard_3") | |
| 569 | AT_KEYB_HELPER( 0x0800, "F1", KEYCODE_S ) /* F1 3B BB */ | |
| 565 | 570 | INPUT_PORTS_END |
| 566 | 571 | |
| 567 | 572 | void savquest_state::machine_start() |
| Previous | 199869 Revisions | Next |