summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2020-10-03 23:42:47 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2020-10-03 23:42:47 +1000
commit0b518114816654ed0ef19335532c2801403db401 (patch)
tree934ea7e33e86bc76cf33f5dff36986fb37849276 /src/mame
parent0f6a1cec4adb9c59f323c4608f1a7b7a81eaaa79 (diff)
z80ne: added notes about paste
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/z80ne.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mame/drivers/z80ne.cpp b/src/mame/drivers/z80ne.cpp
index 00da29c4226..ca8a1cecd0d 100644
--- a/src/mame/drivers/z80ne.cpp
+++ b/src/mame/drivers/z80ne.cpp
@@ -115,6 +115,14 @@ Quick Instructions:
- EP1390: requires a floppy to boot from. Disks marked as NE-DOS 1.5 should work.
- EP2390: uses ports 8x, not emulated, not working. For NE-DOS G.1
+Natural Keyboard and Paste:
+ - The hexpad keys conflict with the keyboard keys, therefore Natural Keyboard is not
+ supported. Paste is meant for Z80NE only.
+
+ - Test Paste:
+ N1000=11=22=33=44=55=66=77=88=99=N1000=
+ Press Ctrl+0 to review the data.
+
*********************************************************************************************************/
@@ -247,7 +255,7 @@ static INPUT_PORTS_START( z80ne )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_START("RST") /* RESET key */
- PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_KEYBOARD ) PORT_NAME("LX.384 Reset") PORT_CODE(KEYCODE_F3) PORT_CHANGED_MEMBER(DEVICE_SELF, z80ne_state, z80ne_reset, 0)
+ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_KEYBOARD ) PORT_NAME("LX.384 Reset") PORT_CODE(KEYCODE_F3) PORT_CHANGED_MEMBER(DEVICE_SELF, z80ne_state, z80ne_reset, 0) PORT_CHAR('N')
/* Settings - need to reboot after altering these */
PORT_START("LX.385")