summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/alesis_qs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/alesis_qs.cpp')
-rw-r--r--src/mame/drivers/alesis_qs.cpp98
1 files changed, 0 insertions, 98 deletions
diff --git a/src/mame/drivers/alesis_qs.cpp b/src/mame/drivers/alesis_qs.cpp
deleted file mode 100644
index 7542b5202bb..00000000000
--- a/src/mame/drivers/alesis_qs.cpp
+++ /dev/null
@@ -1,98 +0,0 @@
-// license:GPL2+
-// copyright-holders:Felipe Sanches
-/******************************************************************
-
- Alesis QS-series keyboards
-
- Currently this skeleton covers only the Alesis QS-7
- unit, but other keyboards in this series have similar
- hardware caracteristics.
-
- Author: Felipe Correa da Silva Sanches <juca@members.fsf.org>
-
-*******************************************************************/
-
-#include "emu.h"
-#include "cpu/h8/h83048.h"
-//#include "sound/alesis_qs.h"
-
-class qs_state : public driver_device
-{
-public:
- qs_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu")
- { }
-
- void qs7(machine_config &config);
-
-private:
- void qs7_prog_map(address_map &map);
-
- required_device<cpu_device> m_maincpu;
-};
-
-/* Input ports */
-static INPUT_PORTS_START( qs7 )
-// PORT_START("COL1")
-// PORT_BIT(0x01, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("?") PORT_CODE(KEYCODE_)
-// PORT_BIT(0x02, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("?") PORT_CODE(KEYCODE_)
-// PORT_BIT(0x04, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("?") PORT_CODE(KEYCODE_)
-// PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("?") PORT_CODE(KEYCODE_)
-// PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("?") PORT_CODE(KEYCODE_)
-// PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("?") PORT_CODE(KEYCODE_)
-// PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("?") PORT_CODE(KEYCODE_)
-// PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("?") PORT_CODE(KEYCODE_)
-INPUT_PORTS_END
-
-void qs_state::qs7_prog_map(address_map &map)
-{
- //map.global_mask(0x3ffff);
- map(0x00000, 0x3ffff).rom();
-}
-
-void qs_state::qs7(machine_config &config)
-{
- /* basic machine hardware */
- H83048(config, m_maincpu, XTAL(10'000'000)); /* FIX-ME! Actual CPU is H8/510 and XTAL value is a guess */
- m_maincpu->set_addrmap(AS_PROGRAM, &qs_state::qs7_prog_map);
-
- //MCFG_ALESIS_KEYSCAN_ASIC_ADD("keyscan")
-
- /* Alesis Sound Generator ASIC */
- //MCFG_ALESIS_SG_ASIC_ADD("sndgen")
-
- /* Alesis Sound Effects Processor ASIC */
- //MCFG_ALESIS_FX_ASIC_ADD("sfx")
-
- /* video hardware */
- //TODO: add LCD display controller here
-
- /* sound hardware */
- //MCFG_SPEAKER_STANDARD_STEREO("stereo")
- //MCFG_ALESIS_QS_SERIES_ADD("sound", SND_CLOCK)
- //MCFG_SOUND_ROUTE(ALL_OUTPUTS, "stereo", 1.0)
-
- /* Interfaces */
- //MCFG_PCMCIA_ADD("pcmcia")
- //MIDI
- //RS232
-}
-
-ROM_START( alesqs7 )
- ROM_REGION( 0x80000, "maincpu", 0 )
- ROM_LOAD( "2-31-0069_q7_v1.02_alesis_sp_09_12_96_cs_dbcc.u18", 0x00000, 0x80000, CRC(6e5404cb) SHA1(f00598b66ab7a83b16105cbb73e09c66ce3493a7) )
-
-// ROM_REGION( 0x200000, "sound", 0 ) /* Samples ROMs (2Mbyte each) */
-// ROM_LOAD( "?.u?", 0x00000, 0x200000, NO_DUMP )
-// ROM_LOAD( "?.u?", 0x00000, 0x200000, NO_DUMP )
-// ROM_LOAD( "?.u?", 0x00000, 0x200000, NO_DUMP )
-// ROM_LOAD( "?.u?", 0x00000, 0x200000, NO_DUMP )
-// ROM_LOAD( "?.u?", 0x00000, 0x200000, NO_DUMP )
-// ROM_LOAD( "?.u?", 0x00000, 0x200000, NO_DUMP )
-// ROM_LOAD( "?.u?", 0x00000, 0x200000, NO_DUMP )
-// ROM_LOAD( "?.u?", 0x00000, 0x200000, NO_DUMP )
-ROM_END
-
-// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS
-COMP( 1996, alesqs7, 0, 0, qs7, qs7, qs_state, empty_init, "Alesis", "Alesis QS7 musical keyboard", MACHINE_IS_SKELETON )