Previous 199869 Revisions Next

r34634 Sunday 18th January, 2015 at 19:06:17 UTC by Felipe CorrĂȘa da Silva Sanches
(mess) banctec: adding an Intel 80C31 as maincpu. The Motorola M6803 is the secondary MCU dedicated to controlling the Rockwell R6545 chip.
[src/mess/drivers]banctec.c

trunk/src/mess/drivers/banctec.c
r243145r243146
1// license:MAME|GPL2+
2// copyright-holders:Felipe Sanches
3/***************************************************************************
4  This driver covers only the Operator Panel of the BancTec 91690 Document Processor equipment
5
6  Author: Felipe Sanches <juca@members.fsf.org>
7
8  Maintainence Manual: <https://garoa.net.br/w/images/PAINEL_BANCTEC_91690.PDF>
9*/
10
111#include "emu.h"
12#include "cpu/mcs51/mcs51.h"
213#include "cpu/m6805/m6805.h"
314#include "includes/banctec.h"
415#include "video/mc6845.h"
516
617static ADDRESS_MAP_START( banctec_mem , AS_PROGRAM, 8, banctec_state )
18   AM_RANGE(0x0000, 0x07ff) AM_ROM
19   AM_RANGE(0x0800, 0xffff) AM_RAM /* Probably wrong. Must be verified on pcb! */
20ADDRESS_MAP_END
21
22static ADDRESS_MAP_START( banctec_mcu_mem , AS_PROGRAM, 8, banctec_state )
723   AM_RANGE(0x0000, 0x1fff) AM_ROM
824   AM_RANGE(0x2000, 0x7fff) AM_RAM /* Probably wrong. Must be verified on pcb! */
925   AM_RANGE(0x8000, 0xffff) AM_RAM AM_SHARE("videoram") /* Probably wrong. Must be verified on pcb! */
r243145r243146
6783
6884static MACHINE_CONFIG_START( banctec, banctec_state )
6985   /* basic machine hardware */
70   MCFG_CPU_ADD("maincpu", M6805, 4000000)     /* 4000000? */
86
87   MCFG_CPU_ADD("maincpu", I80C31, XTAL_11_0592MHz)
7188   MCFG_CPU_PROGRAM_MAP(banctec_mem)
7289
90   MCFG_CPU_ADD("mcu", M6805, 4000000)     /* Actual MCU is a Motorola 6803 and the clock frequency is still unknown */
91   MCFG_CPU_PROGRAM_MAP(banctec_mcu_mem)
92
7393// The video signal is generated by a R6545EAP character generator chip
7494// The U20 EPROM holds the image data for the character set.
7595
r243145r243146
93113MACHINE_CONFIG_END
94114
95115ROM_START(banctec)
96   ROM_REGION(0x2000,"maincpu",0)
116   ROM_REGION(0x800,"maincpu",0)
117   ROM_LOAD("banctec_eseries_panel_opnl.u20", 0x000, 0x800, CRC(c2ab9c06) SHA1(a296589034f656790ad5ffbce028dd846a40cf03))
118
119   ROM_REGION(0x2000,"mcu",0)
97120   ROM_LOAD("banctec_eseries_panel.u8", 0x0000, 0x2000, CRC(f3335e0a) SHA1(5ca45fdcb7ef45a65c28c79abfa9ebb7a8a06619))
98121
99122   ROM_REGION(0x1000,"gfx",0)


Previous 199869 Revisions Next


© 1997-2024 The MAME Team