mirror of
https://github.com/holub/mame
synced 2025-04-16 13:34:55 +03:00
M1COMM - initial commit
This commit is contained in:
parent
c35c1f8e5c
commit
c4c906f509
@ -2421,6 +2421,7 @@ files {
|
||||
MAME_DIR .. "src/mame/drivers/model1.c",
|
||||
MAME_DIR .. "src/mame/machine/model1.c",
|
||||
MAME_DIR .. "src/mame/video/model1.c",
|
||||
MAME_DIR .. "src/mame/machine/m1comm.c",
|
||||
MAME_DIR .. "src/mame/audio/dsbz80.c",
|
||||
MAME_DIR .. "src/mame/drivers/model2.c",
|
||||
MAME_DIR .. "src/mame/video/model2.c",
|
||||
|
@ -742,6 +742,9 @@ TIMER_DEVICE_CALLBACK_MEMBER(model1_state::model1_interrupt)
|
||||
irq_raise(m_sound_irq);
|
||||
|
||||
m_m1audio->check_fifo_irq();
|
||||
|
||||
if (m_m1comm != NULL)
|
||||
m_m1comm->check_vint_irq();
|
||||
}
|
||||
}
|
||||
|
||||
@ -902,6 +905,10 @@ static ADDRESS_MAP_START( model1_mem, AS_PROGRAM, 16, model1_state )
|
||||
AM_RANGE(0x900000, 0x903fff) AM_RAM_WRITE(p_w) AM_SHARE("palette")
|
||||
AM_RANGE(0x910000, 0x91bfff) AM_RAM AM_SHARE("color_xlat")
|
||||
|
||||
AM_RANGE(0xb00000, 0xb00fff) AM_DEVREADWRITE8("m1comm", m1comm_device, share_r, share_w, 0xffff)
|
||||
AM_RANGE(0xb01000, 0xb01001) AM_DEVREADWRITE8("m1comm", m1comm_device, cn_r, cn_w, 0x00ff)
|
||||
AM_RANGE(0xb01002, 0xb01003) AM_DEVREADWRITE8("m1comm", m1comm_device, fg_r, fg_w, 0x00ff)
|
||||
|
||||
AM_RANGE(0xc00000, 0xc0003f) AM_READWRITE(io_r, io_w)
|
||||
|
||||
AM_RANGE(0xc00040, 0xc00043) AM_READWRITE(network_ctl_r, network_ctl_w)
|
||||
@ -950,6 +957,10 @@ static ADDRESS_MAP_START( model1_vr_mem, AS_PROGRAM, 16, model1_state )
|
||||
AM_RANGE(0x900000, 0x903fff) AM_RAM_WRITE(p_w) AM_SHARE("palette")
|
||||
AM_RANGE(0x910000, 0x91bfff) AM_RAM AM_SHARE("color_xlat")
|
||||
|
||||
AM_RANGE(0xb00000, 0xb00fff) AM_DEVREADWRITE8("m1comm", m1comm_device, share_r, share_w, 0xffff)
|
||||
AM_RANGE(0xb01000, 0xb01001) AM_DEVREADWRITE8("m1comm", m1comm_device, cn_r, cn_w, 0x00ff)
|
||||
AM_RANGE(0xb01002, 0xb01003) AM_DEVREADWRITE8("m1comm", m1comm_device, fg_r, fg_w, 0x00ff)
|
||||
|
||||
AM_RANGE(0xc00000, 0xc0003f) AM_READWRITE(io_r, io_w)
|
||||
|
||||
AM_RANGE(0xc00040, 0xc00043) AM_READWRITE(network_ctl_r, network_ctl_w)
|
||||
@ -1541,6 +1552,8 @@ static MACHINE_CONFIG_START( model1, model1_state )
|
||||
MCFG_VIDEO_START_OVERRIDE(model1_state,model1)
|
||||
|
||||
MCFG_SEGAM1AUDIO_ADD("m1audio")
|
||||
|
||||
MCFG_M1COMM_ADD("m1comm")
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
static MACHINE_CONFIG_DERIVED(swa, model1)
|
||||
@ -1586,6 +1599,8 @@ static MACHINE_CONFIG_START( model1_vr, model1_state )
|
||||
MCFG_VIDEO_START_OVERRIDE(model1_state,model1)
|
||||
|
||||
MCFG_SEGAM1AUDIO_ADD("m1audio")
|
||||
|
||||
MCFG_M1COMM_ADD("m1comm")
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
GAME( 1993, vf, 0, model1, vf, driver_device, 0, ROT0, "Sega", "Virtua Fighter", GAME_IMPERFECT_GRAPHICS )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// copyright-holders:Olivier Galibert
|
||||
#include "audio/dsbz80.h"
|
||||
#include "audio/segam1audio.h"
|
||||
#include "machine/m1comm.h"
|
||||
#include "cpu/v60/v60.h"
|
||||
|
||||
#define DECLARE_TGP_FUNCTION(name) void name()
|
||||
@ -16,6 +17,7 @@ public:
|
||||
: driver_device(mconfig, type, tag),
|
||||
m_maincpu(*this, "maincpu"),
|
||||
m_m1audio(*this, "m1audio"),
|
||||
m_m1comm(*this, "m1comm"),
|
||||
m_dsbz80(*this, DSBZ80_TAG),
|
||||
m_tgp(*this, "tgp"),
|
||||
m_screen(*this, "screen"),
|
||||
@ -29,6 +31,7 @@ public:
|
||||
|
||||
required_device<v60_device> m_maincpu; // V60
|
||||
required_device<segam1audio_device> m_m1audio; // Model 1 standard sound board
|
||||
optional_device<m1comm_device> m_m1comm; // Model 1 communication board
|
||||
optional_device<dsbz80_device> m_dsbz80; // Digital Sound Board
|
||||
optional_device<mb86233_cpu_device> m_tgp;
|
||||
required_device<screen_device> m_screen;
|
||||
|
290
src/mame/machine/m1comm.c
Normal file
290
src/mame/machine/m1comm.c
Normal file
@ -0,0 +1,290 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ariane Fugmann
|
||||
|
||||
/*
|
||||
Comm PCB
|
||||
--------
|
||||
|
||||
MODEL-1 COMMUNICATION BD 837-8842 171-6293B (C) SEGA 1992
|
||||
|--------------------------------------------------------------------------------|
|
||||
| |
|
||||
| MB89237A MB89374 |
|
||||
| JP4 LED1 |
|
||||
| 15112.17 Z80 |
|
||||
| JP2 JP3 75179 |
|
||||
| MB8464 315-5624 JP6 |
|
||||
| 315-5547 |
|
||||
| 315-5611 SW1 PC910 CN4|
|
||||
| |
|
||||
| PC910 CN5|
|
||||
| MB8421 MB8431 JP7 |
|
||||
| JP5 |
|
||||
| JP8 CN7|
|
||||
| CN1 CN2 |
|
||||
| |---------------------------------| |---------------------------------| CN6|
|
||||
| |---------------------------------| |---------------------------------| |
|
||||
|--------------------------------------------------------------------------------|
|
||||
Notes:
|
||||
15112.17 - AMD AM27C100 128k x8 EPROM (DIP32, labelled 'EPR-15112')
|
||||
Z80 - Zilog Z0840004PSC Z80 CPU, running at 4.000MHz (DIP40)
|
||||
MB8464 - Fujitsu MB8464 8k x8 SRAM (DIP28)
|
||||
MB8421 - Fujitsu MB8421-12LP 2k x8 SRAM (SDIP52)
|
||||
MB8431 - Fujitsu MB8431-90LP 2k x8 SRAM (SDIP52)
|
||||
MB89237A - Fujitsu MB89237A DMA-Controller (DIP20) [most likely i8237A clone]
|
||||
MB89374 - Fujitsu MB89374 Data Link Controller (SDIP42)
|
||||
75179 - Texas Instruments SN75179 Differential Driver and Receiver Pair (DIP8)
|
||||
315-5547 - AMI 18CV8PC-25 PAL (DIP20)
|
||||
315-5624 - MMI PAL16L8BCN PAL (DIP20)
|
||||
315-5611 - Lattice GAL16V8A PAL (DIP20)
|
||||
PC910 - Sharp PC910 opto-isolator (x2, DIP8)
|
||||
SW1 - Push Button Switch (enables board)
|
||||
CN1, CN2 - Connectors to join Comm board to Video board
|
||||
CN4 - 8 pin connector (DIFFERENTIAL port)
|
||||
CN5 - 6 pin connector (SERIAL port)
|
||||
CN6, CN7 - TOSLINK-Connectors for network optical cable link
|
||||
JP2 - Jumper, set to 2-3 (connected to EPROM A15)
|
||||
JP3 - Jumper, set to 1-2 (connected to EPROM A16)
|
||||
JP4 - Jumper, set to 1-2
|
||||
JP5 - Jumper, shorted (enables TOSLINK RX channel)
|
||||
JP6 - Jumper, not shorted (enables DIFFERERENTIAL RX channel)
|
||||
JP7 - Jumper, not shorted (enables SERIAL RX channel)
|
||||
JP8 - Jumper, set to 1-2 (selects CLOCK SOURCE)
|
||||
*/
|
||||
|
||||
#include "machine/m1comm.h"
|
||||
|
||||
#define Z80_TAG "m1commcpu"
|
||||
|
||||
#define __M1COMM_VERBOSE__
|
||||
|
||||
/*************************************
|
||||
* M1COMM Memory Map
|
||||
*************************************/
|
||||
static ADDRESS_MAP_START( m1comm_mem, AS_PROGRAM, 8, m1comm_device )
|
||||
AM_RANGE(0x0000, 0x7fff) AM_ROM
|
||||
AM_RANGE(0x8000, 0x9fff) AM_RAM
|
||||
AM_RANGE(0xC000, 0xffff) AM_READWRITE(share_r, share_w)
|
||||
ADDRESS_MAP_END
|
||||
|
||||
/*************************************
|
||||
* M1COMM I/O Map
|
||||
*************************************/
|
||||
static ADDRESS_MAP_START( m1comm_io, AS_IO, 8, m1comm_device )
|
||||
ADDRESS_MAP_GLOBAL_MASK(0xff)
|
||||
AM_RANGE(0x00, 0x1F) AM_READWRITE(dlc_reg_r, dlc_reg_w)
|
||||
AM_RANGE(0x20, 0x2F) AM_READWRITE(dma_reg_r, dma_reg_w)
|
||||
AM_RANGE(0x40, 0x40) AM_READWRITE(syn_r, syn_w)
|
||||
AM_RANGE(0x60, 0x60) AM_READWRITE(zfg_r, zfg_w)
|
||||
AM_RANGE(0xFFFF, 0xFFFF) AM_RAM
|
||||
ADDRESS_MAP_END
|
||||
|
||||
MACHINE_CONFIG_FRAGMENT( m1comm )
|
||||
MCFG_CPU_ADD(Z80_TAG, Z80, 4000000) /* 32 MHz / 8 */
|
||||
MCFG_CPU_PROGRAM_MAP(m1comm_mem)
|
||||
MCFG_CPU_IO_MAP(m1comm_io)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
ROM_START( m1comm )
|
||||
ROM_REGION( 0x20000, Z80_TAG, ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "epr-15112.17", 0x0000, 0x20000, CRC(4950E771) )
|
||||
ROM_END
|
||||
|
||||
//**************************************************************************
|
||||
// GLOBAL VARIABLES
|
||||
//**************************************************************************
|
||||
|
||||
const device_type M1COMM = &device_creator<m1comm_device>;
|
||||
|
||||
//-------------------------------------------------
|
||||
// machine_config_additions - device-specific
|
||||
// machine configurations
|
||||
//-------------------------------------------------
|
||||
|
||||
machine_config_constructor m1comm_device::device_mconfig_additions() const
|
||||
{
|
||||
return MACHINE_CONFIG_NAME( m1comm );
|
||||
}
|
||||
|
||||
//-------------------------------------------------
|
||||
// rom_region - device-specific ROM region
|
||||
//-------------------------------------------------
|
||||
|
||||
const rom_entry *m1comm_device::device_rom_region() const
|
||||
{
|
||||
return ROM_NAME( m1comm );
|
||||
}
|
||||
|
||||
//**************************************************************************
|
||||
// LIVE DEVICE
|
||||
//**************************************************************************
|
||||
|
||||
//-------------------------------------------------
|
||||
// m1comm_device - constructor
|
||||
//-------------------------------------------------
|
||||
|
||||
m1comm_device::m1comm_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
|
||||
device_t(mconfig, M1COMM, "MODEL-1 COMMUNICATION BD", tag, owner, clock, "m1comm", __FILE__),
|
||||
m_commcpu(*this, Z80_TAG)
|
||||
{
|
||||
}
|
||||
|
||||
//-------------------------------------------------
|
||||
// device_start - device-specific startup
|
||||
//-------------------------------------------------
|
||||
|
||||
void m1comm_device::device_start()
|
||||
{
|
||||
}
|
||||
|
||||
//-------------------------------------------------
|
||||
// device_reset - device-specific reset
|
||||
//-------------------------------------------------
|
||||
|
||||
void m1comm_device::device_reset()
|
||||
{
|
||||
m_syn = 0;
|
||||
m_zfg = 0;
|
||||
m_cn = 0;
|
||||
m_fg = 0;
|
||||
|
||||
m_commcpu->set_input_line(INPUT_LINE_RESET, ASSERT_LINE);
|
||||
}
|
||||
|
||||
READ8_MEMBER(m1comm_device::dlc_reg_r)
|
||||
{
|
||||
// dirty hack to keep Z80 in RESET state
|
||||
if (!m_cn)
|
||||
{
|
||||
device_reset();
|
||||
return 0xFF;
|
||||
}
|
||||
// dirty hack to keep Z80 in RESET state
|
||||
|
||||
UINT8 result = m_dlc_reg[offset];
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
printf("m1comm-dlc_reg_r: read register %02x for value %02x\n", offset, result);
|
||||
#endif
|
||||
return result;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(m1comm_device::dlc_reg_w)
|
||||
{
|
||||
m_dlc_reg[offset] = data;
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
printf("m1comm-dlc_reg_w: write register %02x for value %02x\n", offset, data);
|
||||
#endif
|
||||
}
|
||||
|
||||
READ8_MEMBER(m1comm_device::dma_reg_r)
|
||||
{
|
||||
UINT8 result = m_dma_reg[offset];
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
printf("m1comm-dma_reg_r: read register %02x for value %02x\n", offset, result);
|
||||
#endif
|
||||
return result;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(m1comm_device::dma_reg_w)
|
||||
{
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
printf("m1comm-dma_reg_w: %02x %02x\n", offset, data);
|
||||
#endif
|
||||
m_dma_reg[offset] = data;
|
||||
}
|
||||
|
||||
READ8_MEMBER(m1comm_device::syn_r)
|
||||
{
|
||||
UINT8 result = m_syn | 0xFC;
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
printf("m1comm-syn_r: read register %02x for value %02x\n", offset, result);
|
||||
#endif
|
||||
return result;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(m1comm_device::syn_w)
|
||||
{
|
||||
m_syn = data & 0x03;
|
||||
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
switch (data & 0x02)
|
||||
{
|
||||
case 0x00:
|
||||
printf("m1comm-syn_w: VINT disabled\n");
|
||||
break;
|
||||
|
||||
case 0x02:
|
||||
printf("m1comm-syn_w: VINT enabled\n");
|
||||
break;
|
||||
|
||||
default:
|
||||
printf("m1comm-syn_w: %02x\n", data);
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
READ8_MEMBER(m1comm_device::zfg_r)
|
||||
{
|
||||
UINT8 result = m_zfg | 0xFE;
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
printf("m1comm-zfg_r: read register %02x for value %02x\n", offset, result);
|
||||
#endif
|
||||
return result;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(m1comm_device::zfg_w)
|
||||
{
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
printf("m1comm-zfg_w: %02x\n", data);
|
||||
#endif
|
||||
m_zfg = data & 0x01;
|
||||
}
|
||||
|
||||
READ8_MEMBER(m1comm_device::share_r)
|
||||
{
|
||||
return m_shared[offset];
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(m1comm_device::share_w)
|
||||
{
|
||||
m_shared[offset] = data;
|
||||
}
|
||||
|
||||
READ8_MEMBER(m1comm_device::cn_r)
|
||||
{
|
||||
return m_cn | 0xFE;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(m1comm_device::cn_w)
|
||||
{
|
||||
m_cn = data & 0x01;
|
||||
|
||||
if (!m_cn)
|
||||
device_reset();
|
||||
else
|
||||
m_commcpu->set_input_line(INPUT_LINE_RESET, CLEAR_LINE);
|
||||
}
|
||||
|
||||
READ8_MEMBER(m1comm_device::fg_r)
|
||||
{
|
||||
return m_fg | (~m_zfg << 7) | 0x7E;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(m1comm_device::fg_w)
|
||||
{
|
||||
if (!m_cn)
|
||||
return;
|
||||
|
||||
m_fg = data & 0x01;
|
||||
}
|
||||
|
||||
void m1comm_device::check_vint_irq()
|
||||
{
|
||||
if (m_syn & 0x02)
|
||||
{
|
||||
m_commcpu->set_input_line_and_vector(0, HOLD_LINE, 0xEF);
|
||||
#ifdef __M1COMM_VERBOSE__
|
||||
printf("m1comm-INT5\n");
|
||||
#endif
|
||||
}
|
||||
}
|
80
src/mame/machine/m1comm.h
Normal file
80
src/mame/machine/m1comm.h
Normal file
@ -0,0 +1,80 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ariane Fugmann
|
||||
#pragma once
|
||||
|
||||
#ifndef __M1COMM_H__
|
||||
#define __M1COMM_H__
|
||||
|
||||
#include "emu.h"
|
||||
#include "cpu/z80/z80.h"
|
||||
|
||||
#define MCFG_M1COMM_ADD(_tag ) \
|
||||
MCFG_DEVICE_ADD(_tag, M1COMM, 0)
|
||||
|
||||
//**************************************************************************
|
||||
// TYPE DEFINITIONS
|
||||
//**************************************************************************
|
||||
|
||||
class m1comm_device : public device_t
|
||||
{
|
||||
public:
|
||||
// construction/destruction
|
||||
m1comm_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
|
||||
|
||||
// optional information overrides
|
||||
virtual machine_config_constructor device_mconfig_additions() const;
|
||||
|
||||
required_device<z80_device> m_commcpu;
|
||||
|
||||
// internal API - stuff that happens on the comm board
|
||||
// MB89374 registers
|
||||
DECLARE_READ8_MEMBER(dlc_reg_r);
|
||||
DECLARE_WRITE8_MEMBER(dlc_reg_w);
|
||||
// MB89237A registers
|
||||
DECLARE_READ8_MEMBER(dma_reg_r);
|
||||
DECLARE_WRITE8_MEMBER(dma_reg_w);
|
||||
// single bit registers (74LS74)
|
||||
DECLARE_READ8_MEMBER(syn_r);
|
||||
DECLARE_WRITE8_MEMBER(syn_w);
|
||||
DECLARE_READ8_MEMBER(zfg_r);
|
||||
DECLARE_WRITE8_MEMBER(zfg_w);
|
||||
// shared memory 4k
|
||||
DECLARE_READ8_MEMBER(share_r);
|
||||
DECLARE_WRITE8_MEMBER(share_w);
|
||||
|
||||
// public API - stuff that gets called from the model1
|
||||
// shared memory 4k
|
||||
// reads/writes at I/O 0xB00xxx
|
||||
// - share_r
|
||||
// - share_w
|
||||
// single bit registers (74LS74)
|
||||
// reads/writes at I/O 0xB01000
|
||||
DECLARE_READ8_MEMBER(cn_r);
|
||||
DECLARE_WRITE8_MEMBER(cn_w);
|
||||
// reads/writes at I/O 0xB01002
|
||||
DECLARE_READ8_MEMBER(fg_r);
|
||||
DECLARE_WRITE8_MEMBER(fg_w);
|
||||
|
||||
// IRQ logic - 5 = VINT, 7 = DLC
|
||||
void check_vint_irq();
|
||||
|
||||
protected:
|
||||
// device-level overrides
|
||||
virtual void device_start();
|
||||
virtual void device_reset();
|
||||
virtual const rom_entry *device_rom_region() const;
|
||||
|
||||
private:
|
||||
UINT8 m_shared[0x1000]; // 2x 2k = 4k; model1 accesses this with 16bit data and 11bit address (A0 to A10)
|
||||
UINT8 m_dlc_reg[0x20]; // MB89374 registers
|
||||
UINT8 m_dma_reg[0x20]; // MB89237A registers
|
||||
UINT8 m_syn; // bit0 is stored; purpose unknown, bit1 is used to enable/disable VINT/IRQ5
|
||||
UINT8 m_zfg; // z80 flip gate? purpose unknown, bit0 is stored
|
||||
UINT8 m_cn; // bit0 is used to enable/disable the comm board
|
||||
UINT8 m_fg; // flip gate? purpose unknown, bit0 is stored, bit7 is connected to ZFG bit 0
|
||||
};
|
||||
|
||||
// device type definition
|
||||
extern const device_type M1COMM;
|
||||
|
||||
#endif /* __M1COMM_H__ */
|
Loading…
Reference in New Issue
Block a user