Previous 199869 Revisions Next

r35011 Saturday 14th February, 2015 at 00:30:34 UTC by hap
roland tb303 skeleton
[src/mess]mess.lst mess.mak
[src/mess/drivers]tb303.c*
[src/mess/layout]tb303.lay*

trunk/src/mess/drivers/tb303.c
r0r243523
1// license:BSD-3-Clause
2// copyright-holders:hap
3/***************************************************************************
4
5  Roland TB-303
6  * NEC uCOM-43 MCU, labeled D650C 133
7 
8  x
9
10***************************************************************************/
11
12#include "emu.h"
13#include "cpu/ucom4/ucom4.h"
14#include "sound/speaker.h"
15
16#include "tb303.lh"
17
18
19class tb303_state : public driver_device
20{
21public:
22   tb303_state(const machine_config &mconfig, device_type type, const char *tag)
23      : driver_device(mconfig, type, tag),
24      m_maincpu(*this, "maincpu")
25   { }
26
27   required_device<cpu_device> m_maincpu;
28
29   virtual void machine_start();
30};
31
32
33static INPUT_PORTS_START( tb303 )
34INPUT_PORTS_END
35
36
37
38/***************************************************************************
39
40  Machine Config
41
42***************************************************************************/
43
44void tb303_state::machine_start()
45{
46}
47
48
49static MACHINE_CONFIG_START( tb303, tb303_state )
50
51   /* basic machine hardware */
52   MCFG_CPU_ADD("maincpu", NEC_D650, 454545) // LC circuit, 2.2us pulse
53
54   MCFG_DEFAULT_LAYOUT(layout_tb303)
55
56   /* no video! */
57
58   /* sound hardware */
59   // discrete...
60MACHINE_CONFIG_END
61
62
63
64/***************************************************************************
65
66  Game driver(s)
67
68***************************************************************************/
69
70ROM_START( tb303 )
71   ROM_REGION( 0x0800, "maincpu", 0 )
72   ROM_LOAD( "d650c-133.ic8", 0x0000, 0x0800, CRC(dd2f26ae) SHA1(7f5e37f38d970219dc9e5d49a20dc5335a5c0b30) )
73ROM_END
74
75
76CONS( 1982, tb303, 0, 0, tb303, tb303, driver_device, 0, "Roland", "TB-303", GAME_NOT_WORKING | GAME_NO_SOUND | GAME_SUPPORTS_SAVE )
trunk/src/mess/layout/tb303.lay
r0r243523
1<?xml version="1.0"?>
2<mamelayout version="2">
3
4<!-- define elements -->
5
6   <element name="led" defstate="0">
7      <disk state="0"><color red="0.15" green="0.03" blue="0.03" /></disk>
8      <disk state="1"><color red="1.0" green="0.3" blue="0.3" /></disk>
9   </element>
10
11
12
13<!-- build screen -->
14
15   <view name="Internal Layout">
16      <bounds left="0" right="100" top="0" bottom="100" />
17
18
19   </view>
20</mamelayout>
trunk/src/mess/mess.lst
r243522r243523
362362fb01    // 1986 FB-01
363363
364364// Roland
365tb303
365366mt32
366367cm32l
367368d110
trunk/src/mess/mess.mak
r243522r243523
15631563   $(MESS_DRIVERS)/rmt32.o     \
15641564   $(MESS_DRIVERS)/rd110.o     \
15651565   $(MESS_DRIVERS)/rsc55.o     \
1566   $(MESS_DRIVERS)/tb303.o     \
15661567
15671568$(MESSOBJ)/rockwell.a:          \
15681569   $(MESS_DRIVERS)/aim65.o $(MESS_MACHINE)/aim65.o \
r243522r243523
22022203$(MESS_DRIVERS)/sym1.o:     $(MESS_LAYOUT)/sym1.lh
22032204$(MESS_DRIVERS)/tandy12.o:  $(MESS_LAYOUT)/tandy12.lh
22042205$(MESS_DRIVERS)/tavernie.o: $(MESS_LAYOUT)/tavernie.lh
2206$(MESS_DRIVERS)/tb303.o:    $(MESS_LAYOUT)/tb303.lh
22052207$(MESS_DRIVERS)/tec1.o:     $(MESS_LAYOUT)/tec1.lh
22062208$(MESS_DRIVERS)/tecnbras.o: $(MESS_LAYOUT)/tecnbras.lh
22072209$(MESS_DRIVERS)/ti74.o:     $(MESS_LAYOUT)/ti74.lh \


Previous 199869 Revisions Next


© 1997-2024 The MAME Team