diff options
author | 2024-05-16 01:52:04 +1000 | |
---|---|---|
committer | 2024-05-16 01:52:04 +1000 | |
commit | a49035cc72ca1cc4977988509b887fdb33b510c9 (patch) | |
tree | af199b34de262ea42d24fc25902fa67118eeb5c6 | |
parent | 20c88890c0853091bb8c8cd91cf0345e75c6441a (diff) |
-namco/sweetland4.cpp: Changed short name of Tairyo-Daiko 337 Byoshi to better mnemonic.
-bus/mackbd/keyboard.cpp: Updated comment listing known part numbers.
-rw-r--r-- | src/devices/bus/mackbd/keyboard.cpp | 4 | ||||
-rw-r--r-- | src/mame/mame.lst | 2 | ||||
-rw-r--r-- | src/mame/namco/sweetland4.cpp | 12 |
3 files changed, 8 insertions, 10 deletions
diff --git a/src/devices/bus/mackbd/keyboard.cpp b/src/devices/bus/mackbd/keyboard.cpp index 27edfb335bd..5b3cca18b21 100644 --- a/src/devices/bus/mackbd/keyboard.cpp +++ b/src/devices/bus/mackbd/keyboard.cpp @@ -189,6 +189,7 @@ * M0110 (U.S. - ANSI) * M0110B (British - ISO) * M0110F (French - ISO) + * M0110J (Japanese - ANSI) * M0110T (Italian - ISO) * M0120 (keypad - English) * M0120P (keypad - European) @@ -198,9 +199,6 @@ Enter and Clear (all variants use icons for command and the cursor arrows). - Also known to exist: - * Japanese - ANSI (U.S. with different key caps) - TODO: * Determine whether P00 or P01 actually feeds the keypad watchdog * Find more model numbers and implement more layouts diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 92475683799..c532e0fc54e 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -33300,7 +33300,7 @@ sweetlnd // @source:namco/sweetland4.cpp sweetld4 // -tairyouda // (c) 2000 Namco +tairyodk // (c) 2000 Namco @source:namco/tankbatt.cpp tankbatt // (c) 1980 Namco diff --git a/src/mame/namco/sweetland4.cpp b/src/mame/namco/sweetland4.cpp index f1e0b1a01e0..0377316226e 100644 --- a/src/mame/namco/sweetland4.cpp +++ b/src/mame/namco/sweetland4.cpp @@ -47,7 +47,7 @@ public: {} void sweetland4(machine_config &config); - void tairyouda(machine_config &config); + void tairyodk(machine_config &config); private: required_device<h8h_device> m_maincpu; @@ -110,7 +110,7 @@ static INPUT_PORTS_START( sweetld4 ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) INPUT_PORTS_END -static INPUT_PORTS_START( tairyouda ) +static INPUT_PORTS_START( tairyodk ) PORT_START("DSW1") // only one bank of 4 dip switches on PCB PORT_DIPNAME( 0x01, 0x01, "DSW1-01" ) PORT_DIPSETTING( 0x01, DEF_STR( Off ) ) @@ -142,7 +142,7 @@ void sweetland4_state::sweetland4(machine_config &config) oki.add_route(1, "rspeaker", 1.00); } -void sweetland4_state::tairyouda(machine_config &config) +void sweetland4_state::tairyodk(machine_config &config) { H83002(config, m_maincpu, 14.746_MHz_XTAL); // H8/3002 6413002F17 @@ -201,7 +201,7 @@ ROM_END |________________________________________________________________________| */ -ROM_START( tairyouda ) // 大漁太鼓337拍子 +ROM_START( tairyodk ) // 大漁太鼓337拍子 ROM_REGION( 0x80000, "maincpu", 0 ) ROM_LOAD( "t3b1_prg0.5f", 0x00000, 0x80000, CRC(d09dcb0c) SHA1(dbb66f5d548079f19b06dd98d3a44ee6b42b470a) ) @@ -212,5 +212,5 @@ ROM_END } // anonymous namespace -GAME( 2004, sweetld4, 0, sweetland4, sweetld4, sweetland4_state, empty_init, ROT0, "Namco", "Sweet Land 4 Bright (ver 2004.9.29)", MACHINE_IS_SKELETON_MECHANICAL ) -GAME( 2000, tairyouda, 0, tairyouda, tairyouda, sweetland4_state, empty_init, ROT0, "Namco", "Tairyo-Daiko 337 Byoshi", MACHINE_IS_SKELETON_MECHANICAL ) +GAME( 2004, sweetld4, 0, sweetland4, sweetld4, sweetland4_state, empty_init, ROT0, "Namco", "Sweet Land 4 Bright (ver 2004.9.29)", MACHINE_IS_SKELETON_MECHANICAL ) +GAME( 2000, tairyodk, 0, tairyodk, tairyodk, sweetland4_state, empty_init, ROT0, "Namco", "Tairyo-Daiko 337 Byoshi", MACHINE_IS_SKELETON_MECHANICAL ) |