Previous 199869 Revisions Next

r17389 Wednesday 22nd August, 2012 at 02:26:02 UTC by Robbbert
[MC8030] Added notes, connected up devices (nw)
[src/mess/drivers]mc80.c
[src/mess/machine]mc80.c

trunk/src/mess/machine/mc80.c
r17388r17389
137137
138138Z80PIO_INTERFACE( mc8030_zve_z80pio_intf )
139139{
140   DEVCB_NULL,   /* callback when change interrupt status */
140   DEVCB_CPU_INPUT_LINE("maincpu", INPUT_LINE_IRQ0),   /* callback when change interrupt status */
141141   DEVCB_DRIVER_MEMBER(mc80_state, zve_port_a_r),
142142   DEVCB_DRIVER_MEMBER(mc80_state, zve_port_a_w),
143143   DEVCB_NULL,
r17388r17389
166166
167167Z80PIO_INTERFACE( mc8030_asp_z80pio_intf )
168168{
169   DEVCB_NULL,   /* callback when change interrupt status */
169   DEVCB_CPU_INPUT_LINE("maincpu", INPUT_LINE_IRQ0),   /* callback when change interrupt status */
170170   DEVCB_DRIVER_MEMBER(mc80_state, asp_port_a_r),
171171   DEVCB_DRIVER_MEMBER(mc80_state, asp_port_a_w),
172172   DEVCB_NULL,
r17388r17389
177177
178178Z80CTC_INTERFACE( mc8030_zve_z80ctc_intf )
179179{
180   DEVCB_NULL,
181   DEVCB_NULL,
182   DEVCB_NULL,
183   DEVCB_NULL
180   DEVCB_CPU_INPUT_LINE("maincpu", INPUT_LINE_IRQ0),
181   DEVCB_NULL,   // for user
182   DEVCB_NULL,   // for user
183   DEVCB_NULL   // for user
184184};
185185
186186Z80CTC_INTERFACE( mc8030_asp_z80ctc_intf )
187187{
188   DEVCB_NULL,
189   DEVCB_NULL,
190   DEVCB_NULL,
191   DEVCB_NULL
188   DEVCB_CPU_INPUT_LINE("maincpu", INPUT_LINE_IRQ0),
189   DEVCB_NULL,   // to SIO CLK CH A
190   DEVCB_NULL,   // to SIO CLK CH B
191   DEVCB_NULL   // KMBG (??)
192192};
193193
194// SIO CH A in = keyboard; out = beeper; CH B = IFSS (??)
194195const z80sio_interface mc8030_asp_z80sio_intf =
195196{
196197   0,   /* interrupt handler */
197198   0,         /* DTR changed handler */
198199   0,         /* RTS changed handler */
199200   0,         /* BREAK changed handler */
200   0,         /* transmit handler - which channel is this for? */
201   0         /* receive handler - which channel is this for? */
201   0,         /* transmit handler */
202   0         /* receive handler */
202203};
203204
trunk/src/mess/drivers/mc80.c
r17388r17389
66        12/05/2009 Skeleton driver.
77        01/09/2011 Modernised, added a keyboard to mc8020
88
9Real workings of keyboard need to be understood and implemented.
9Real workings of mc8020 keyboard need to be understood and implemented.
1010
11mc8030: very little info available. The area from FFD8-FFFF is meant for
12interrupt vectors and so on, but most of it is zeroes. Appears the keyboard
13is an ascii keyboard with built-in beeper. It communicates via the SIO,
14which needs a rewrite to become useful. The asp ctc needs at least 2
15triggers. The purpose of the zve pio is unknown. The system uses interrupts
16for various things, but none of that is working.
17
1118****************************************************************************/
1219
1320#include "includes/mc80.h"
r17388r17389
3946
4047static ADDRESS_MAP_START(mc8030_io, AS_IO, 8, mc80_state)
4148   ADDRESS_MAP_UNMAP_HIGH
42   //ADDRESS_MAP_GLOBAL_MASK(0xff)
43   //AM_RANGE(0x80, 0x84) AM_MIRROR(0xff00) AM_DEVREADWRITE("zve_ctc", z80ctc_device, read, write)
44   //AM_RANGE(0x84, 0x87) AM_MIRROR(0xff00) AM_DEVREADWRITE("zve_pio", z80pio_device, read, write)
45   AM_RANGE(0x8c, 0x8c) AM_MIRROR(0xff00) AM_WRITE(mc8030_zve_write_protect_w)
49   AM_RANGE(0x30, 0x3f) AM_MIRROR(0xff00) AM_NOP //"mass storage"
50   AM_RANGE(0x80, 0x83) AM_MIRROR(0xff00) AM_DEVREADWRITE("zve_ctc", z80ctc_device, read, write) // user CTC
51   AM_RANGE(0x84, 0x87) AM_MIRROR(0xff00) AM_DEVREADWRITE("zve_pio", z80pio_device, read, write) // PIO unknown usage
52   AM_RANGE(0x88, 0x8f) AM_MIRROR(0xff00) AM_WRITE(mc8030_zve_write_protect_w)
4653   AM_RANGE(0xc0, 0xcf) AM_MIRROR(0xff00) AM_WRITE(mc8030_vis_w) AM_MASK(0xffff)
47   //AM_RANGE(0xd0, 0xd3) AM_MIRROR(0xff00) AM_DEVREADWRITE("asp_sio", z80ctc_device, read, write)
48   AM_RANGE(0xd4, 0xd7) AM_MIRROR(0xff00) AM_DEVREADWRITE("asp_ctc", z80ctc_device, read, write)
49   AM_RANGE(0xd8, 0xdb) AM_MIRROR(0xff00) AM_DEVREADWRITE("asp_pio", z80pio_device, read, write)
54   AM_RANGE(0xd0, 0xd3) AM_MIRROR(0xff00) AM_DEVREADWRITE("asp_sio", z80sio_device, read, write) // keyboard & IFSS?
55   AM_RANGE(0xd4, 0xd7) AM_MIRROR(0xff00) AM_DEVREADWRITE("asp_ctc", z80ctc_device, read, write) // sio bauds, KMBG? and kbd
56   AM_RANGE(0xd8, 0xdb) AM_MIRROR(0xff00) AM_DEVREADWRITE("asp_pio", z80pio_device, read, write) // external bus
5057   AM_RANGE(0xe0, 0xef) AM_MIRROR(0xff00) AM_WRITE(mc8030_eprom_prog_w)
5158ADDRESS_MAP_END
5259
r17388r17389
140147   }
141148}
142149
150// this is a guess there is no information available
151static const z80_daisy_config mc8030_daisy_chain[] =
152{
153   { "asp_ctc" },      /* System ctc */
154   { "asp_pio" },      /* System pio */
155   { "asp_sio" },      /* sio */
156   { "zve_pio" },      /* User pio */
157   { "zve_ctc" },      /* User ctc */
158   { NULL }
159};
160
143161static MACHINE_CONFIG_START( mc8020, mc80_state )
144162   /* basic machine hardware */
145163   MCFG_CPU_ADD("maincpu",Z80, XTAL_2_4576MHz)
r17388r17389
170188   MCFG_CPU_ADD("maincpu",Z80, XTAL_2_4576MHz)
171189   MCFG_CPU_PROGRAM_MAP(mc8030_mem)
172190   MCFG_CPU_IO_MAP(mc8030_io)
191   MCFG_CPU_CONFIG(mc8030_daisy_chain)
173192
174193   MCFG_MACHINE_RESET(mc8030)
175194

Previous 199869 Revisions Next


© 1997-2024 The MAME Team