mirror of
https://github.com/holub/mame
synced 2025-04-16 13:34:55 +03:00

- Acorn AGA30 BBC I/O Podule - Acorn AKA05 ROM Podule - Acorn AKA10 BBC I/O Podule - Acorn AKA12 User Port/MIDI Podule - Acorn AKA15 MIDI and BBC I/O Podule - Acorn AKA16 MIDI Podule - Acorn AKA25 Ethernet - Acorn Tube Podule - Archimedes Dual RS423 Serial Interface (not working) - Armadillo Systems A448 Sound Sampler (not working) - Armadillo Systems A448b Stereo MIDI Sound Sampler (not working) - Atomwide Serial Expansion Card - Baildon Electronics IDE HD Interface - Clares Armadeus Sampler Board - Computer Concepts Fax-Pack (not working) - Computer Concepts LaserDirect (Canon LBP-4) (not working) - Computer Concepts ScanLight (not working) - Computer Concepts ScanLight Junior (not working) - Computer Concepts ScanLight Video 256 (not working) - Digital Services Ethernet Podule (not working) - HCCS User/Analogue Podule - RISC Developments Ethernet Card (not working) - RISC Developments IDE Hard Disc System - VTI User Port and SCSI Podule - Watford Electronics BBC User I/O Card - Wild Vision MidiMax - Wild Vision/Computer Concepts Lark A16
127 lines
3.5 KiB
C++
127 lines
3.5 KiB
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Nigel Barnes
|
|
/**********************************************************************
|
|
|
|
Digital Services Ethernet Podule
|
|
|
|
TODO:
|
|
- everything, this is skeleton with ROM.
|
|
|
|
**********************************************************************/
|
|
|
|
#include "emu.h"
|
|
#include "etherd.h"
|
|
|
|
|
|
namespace {
|
|
|
|
class arc_etherd_device :
|
|
public device_t,
|
|
public device_archimedes_podule_interface
|
|
{
|
|
public:
|
|
// construction/destruction
|
|
arc_etherd_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
|
|
|
|
static constexpr feature_type unemulated_features() { return feature::COMMS; }
|
|
|
|
protected:
|
|
// device-level overrides
|
|
virtual void device_start() override;
|
|
virtual void device_reset() override;
|
|
|
|
// optional information overrides
|
|
virtual void device_add_mconfig(machine_config &config) override;
|
|
virtual const tiny_rom_entry *device_rom_region() const override;
|
|
|
|
// device_archimedes_podule_interface overrides
|
|
virtual void ioc_map(address_map &map) override;
|
|
virtual void memc_map(address_map &map) override;
|
|
|
|
private:
|
|
required_memory_region m_podule_rom;
|
|
|
|
u8 m_rom_page;
|
|
};
|
|
|
|
|
|
void arc_etherd_device::ioc_map(address_map &map)
|
|
{
|
|
map(0x0000, 0x1fff).lr8(NAME([this](offs_t offset) { return m_podule_rom->base()[offset | ((m_rom_page << 11) & 0x1f800)]; })).umask32(0x000000ff);
|
|
map(0x0000, 0x0000).lw8(NAME([this](u8 data) { m_rom_page = data; }));
|
|
}
|
|
|
|
void arc_etherd_device::memc_map(address_map &map)
|
|
{
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// ROM( etherd )
|
|
//-------------------------------------------------
|
|
|
|
ROM_START( etherd )
|
|
ROM_REGION(0x20000, "podule_rom", 0)
|
|
ROM_LOAD("dsle3a-2.00.rom", 0x0000, 0x20000, CRC(123a04b9) SHA1(e972c1ab2ccfd20a6e5321549d555f8ae14e12f9))
|
|
ROM_END
|
|
|
|
const tiny_rom_entry *arc_etherd_device::device_rom_region() const
|
|
{
|
|
return ROM_NAME( etherd );
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_add_mconfig - add device configuration
|
|
//-------------------------------------------------
|
|
|
|
void arc_etherd_device::device_add_mconfig(machine_config &config)
|
|
{
|
|
//SMC91C90(config, "lan", 20_MHz_XTAL);
|
|
}
|
|
|
|
|
|
//**************************************************************************
|
|
// LIVE DEVICE
|
|
//**************************************************************************
|
|
|
|
//-------------------------------------------------
|
|
// arc_etherd_device - constructor
|
|
//-------------------------------------------------
|
|
|
|
arc_etherd_device::arc_etherd_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
|
|
: device_t(mconfig, ARC_ETHERD, tag, owner, clock)
|
|
, device_archimedes_podule_interface(mconfig, *this)
|
|
, m_podule_rom(*this, "podule_rom")
|
|
, m_rom_page(0)
|
|
{
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_start - device-specific startup
|
|
//-------------------------------------------------
|
|
|
|
void arc_etherd_device::device_start()
|
|
{
|
|
save_item(NAME(m_rom_page));
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// device_reset - device-specific reset
|
|
//-------------------------------------------------
|
|
|
|
void arc_etherd_device::device_reset()
|
|
{
|
|
m_rom_page = 0x00;
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
//**************************************************************************
|
|
// DEVICE DEFINITIONS
|
|
//**************************************************************************
|
|
|
|
DEFINE_DEVICE_TYPE_PRIVATE(ARC_ETHERD, device_archimedes_podule_interface, arc_etherd_device, "arc_etherd", "Digital Services Ethernet Podule")
|