Previous 199869 Revisions Next

r17441 Friday 24th August, 2012 at 12:15:15 UTC by Robbbert
Zac_proto: preliminary work begun (nw)
[src/mame/drivers]zac_proto.c

trunk/src/mame/drivers/zac_proto.c
r17440r17441
44
55#include "emu.h"
66#include "cpu/scmp/scmp.h"
7//#include "zac-proto.lh"
78
89class zac_proto_state : public driver_device
910{
r17440r17441
1314        m_maincpu(*this, "maincpu")
1415   { }
1516
17   DECLARE_WRITE8_MEMBER(out0_w);
18   DECLARE_WRITE8_MEMBER(out1_w);
19   DECLARE_WRITE8_MEMBER(digit_w);
20   DECLARE_WRITE8_MEMBER(sound_w);
1621protected:
1722
1823   // devices
r17440r17441
2631
2732
2833static ADDRESS_MAP_START( zac_proto_map, AS_PROGRAM, 8, zac_proto_state )
29   AM_RANGE(0x0000, 0xffff) AM_NOP
34   AM_RANGE(0x0000, 0x0bff) AM_ROM
35   AM_RANGE(0x0c00, 0x0dff) AM_RAM
36   AM_RANGE(0x0e00, 0x0e00) AM_READ_PORT("PL0")
37   AM_RANGE(0x0e01, 0x0e01) AM_READ_PORT("PL1")
38   AM_RANGE(0x0e02, 0x0e02) AM_READ_PORT("PL2")
39   AM_RANGE(0x0e03, 0x0e03) AM_READ_PORT("PL3")
40   AM_RANGE(0x0e04, 0x0e04) AM_READ_PORT("PL4")
41   AM_RANGE(0x0e05, 0x0e05) AM_READ_PORT("PL5")
42   AM_RANGE(0x0e06, 0x0e06) AM_READ_PORT("PL6")
43   AM_RANGE(0x0e07, 0x0e07) AM_READ_PORT("PL7")
44   AM_RANGE(0x0e00, 0x0e01) AM_WRITE(out0_w)
45   AM_RANGE(0x0e02, 0x0e06) AM_WRITE(digit_w)
46   AM_RANGE(0x0e07, 0x0e08) AM_WRITE(sound_w)
47   AM_RANGE(0x0e09, 0x0e16) AM_WRITE(out1_w)
48   AM_RANGE(0x1400, 0x1bff) AM_ROM
3049ADDRESS_MAP_END
3150
3251static INPUT_PORTS_START( zac_proto )
52   // playfield inputs
53   PORT_START("PL0")
54   PORT_START("PL1")
55   PORT_START("PL2")
56   PORT_START("PL3")
57   PORT_START("PL4")
58   // dipswitches
59   PORT_START("PL5")
60   PORT_START("PL6")
61   PORT_START("PL7")
3362INPUT_PORTS_END
3463
64WRITE8_MEMBER( zac_proto_state::out0_w )
65{
66}
67
68WRITE8_MEMBER( zac_proto_state::out1_w )
69{
70}
71
72// need to implement blanking of leading zeroes
73WRITE8_MEMBER( zac_proto_state::digit_w )
74{
75   static const UINT8 patterns[16] = { 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f, 0, 0, 0, 0, 0, 0 };
76   offset<<=1;
77   output_set_digit_value(offset++, patterns[data&15]);
78   output_set_digit_value(offset, patterns[data>>4]);
79}
80
81WRITE8_MEMBER( zac_proto_state::sound_w )
82{
83}
84
3585void zac_proto_state::machine_reset()
3686{
87   output_set_digit_value(10, 0x3f); // units shows zero all the time
3788}
3889
3990DRIVER_INIT_MEMBER(zac_proto_state,zac_proto)
r17440r17441
4495   /* basic machine hardware */
4596   MCFG_CPU_ADD("maincpu", SCMP, 1000000)
4697   MCFG_CPU_PROGRAM_MAP(zac_proto_map)
98
99   /* Video */
100   //MCFG_DEFAULT_LAYOUT(layout_zac_proto)
47101MACHINE_CONFIG_END
48102
49103/*--------------------------------

Previous 199869 Revisions Next


© 1997-2024 The MAME Team