summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/test_t400.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-09-30 17:21:14 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-09-30 17:21:14 +0200
commit1fc48ce120a376c288daeeed98daccecf1b60d7b (patch)
tree72cefcede17f3a27fa8256b43bfac9756db82312 /src/mess/drivers/test_t400.c
parent87a576c55501bd7125b51ca786a010229669df0e (diff)
move mess into mame (nw)
Diffstat (limited to 'src/mess/drivers/test_t400.c')
-rw-r--r--src/mess/drivers/test_t400.c53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/mess/drivers/test_t400.c b/src/mess/drivers/test_t400.c
deleted file mode 100644
index b577d3c77a4..00000000000
--- a/src/mess/drivers/test_t400.c
+++ /dev/null
@@ -1,53 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Curt Coder
-/*
-
- T400 uController test suite for COP410/420 series CPUs
-
- http://opencores.org/project,t400
-
-*/
-
-#include "emu.h"
-#include "cpu/cop400/cop400.h"
-
-class t400_test_suite_state : public driver_device
-{
-public:
- t400_test_suite_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag) ,
- m_maincpu(*this, "maincpu") { }
-
- DECLARE_WRITE8_MEMBER( port_l_w );
- required_device<cpu_device> m_maincpu;
-};
-
-WRITE8_MEMBER( t400_test_suite_state::port_l_w )
-{
-// printf("L: %u\n", data);
-}
-
-static MACHINE_CONFIG_START( test_t410, t400_test_suite_state )
- MCFG_CPU_ADD("maincpu", COP410, 1000000)
- MCFG_COP400_CONFIG( COP400_CKI_DIVISOR_16, COP400_CKO_OSCILLATOR_OUTPUT, COP400_MICROBUS_ENABLED )
- MCFG_COP400_WRITE_L_CB(WRITE8(t400_test_suite_state, port_l_w))
-MACHINE_CONFIG_END
-
-static MACHINE_CONFIG_START( test_t420, t400_test_suite_state )
- MCFG_CPU_ADD("maincpu", COP420, 1000000)
- MCFG_COP400_CONFIG( COP400_CKI_DIVISOR_16, COP400_CKO_OSCILLATOR_OUTPUT, COP400_MICROBUS_ENABLED )
- MCFG_COP400_WRITE_L_CB(WRITE8(t400_test_suite_state, port_l_w))
-MACHINE_CONFIG_END
-
-ROM_START( test410 )
- ROM_REGION( 0x200, "maincpu", 0 )
- ROM_LOAD( "rom_41x.bin", 0x000, 0x200, NO_DUMP )
-ROM_END
-
-ROM_START( test420 )
- ROM_REGION( 0x400, "maincpu", 0 )
- ROM_LOAD( "rom_42x.bin", 0x000, 0x400, BAD_DUMP CRC(e4e80001) SHA1(8fdca9d08de1cc83387a7d141f6b254117902442) )
-ROM_END
-
-COMP( 2008, test410, 0, 0, test_t410, 0, driver_device, 0, "T400 uController project", "T410 test suite", MACHINE_NO_SOUND_HW )
-COMP( 2008, test420, test410, 0, test_t420, 0, driver_device, 0, "T400 uController project", "T420 test suite", MACHINE_NO_SOUND_HW )