diff options
author | 2013-11-16 22:49:28 +0000 | |
---|---|---|
committer | 2013-11-16 22:49:28 +0000 | |
commit | a8449c0c4bd9ea011e0a1578965d6a7ebb4ed6cb (patch) | |
tree | a45657b055c8a91ca4666e72282c12723214d570 /src/emu/bus/abcbus | |
parent | b5556208b0dcf8433def27fd3199acd1c1546d77 (diff) |
(MESS) abc800: Added support for raw 80KB and 160KB disk images. [Curt Coder]
Diffstat (limited to 'src/emu/bus/abcbus')
-rw-r--r-- | src/emu/bus/abcbus/lux21046.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/bus/abcbus/lux21046.c b/src/emu/bus/abcbus/lux21046.c index a6ee25dcd42..8c7eec31ea1 100644 --- a/src/emu/bus/abcbus/lux21046.c +++ b/src/emu/bus/abcbus/lux21046.c @@ -446,10 +446,10 @@ INPUT_PORTS_END INPUT_PORTS_START( abc830 ) PORT_START("SW1") - PORT_DIPNAME( 0x01, 0x01, "Drive 0 Sides" ) PORT_DIPLOCATION("SW1:1") + PORT_DIPNAME( 0x01, 0x00, "Drive 0 Sides" ) PORT_DIPLOCATION("SW1:1") PORT_DIPSETTING( 0x00, DEF_STR( Single ) ) PORT_DIPSETTING( 0x01, "Double" ) - PORT_DIPNAME( 0x02, 0x02, "Drive 1 Sides" ) PORT_DIPLOCATION("SW1:2") + PORT_DIPNAME( 0x02, 0x00, "Drive 1 Sides" ) PORT_DIPLOCATION("SW1:2") PORT_DIPSETTING( 0x00, DEF_STR( Single ) ) PORT_DIPSETTING( 0x02, "Double" ) PORT_DIPNAME( 0x04, 0x00, "Drive 0 Density" ) PORT_DIPLOCATION("SW1:3") |