mirror of
https://github.com/holub/mame
synced 2025-04-28 03:02:52 +03:00
Released my copyright on some drivers - i didn't do much work on them.
This commit is contained in:
parent
bcf55960dc
commit
ed13b90a15
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Angelo Salese, Robbbert
|
// copyright-holders:Angelo Salese
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
A5105
|
A5105
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Robbbert, Nigel Barnes
|
// copyright-holders:Nigel Barnes
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
Acorn System 2, 3, 4, and 5
|
Acorn System 2, 3, 4, and 5
|
||||||
|
@ -7,11 +7,6 @@
|
|||||||
preliminary driver by Angelo Salese
|
preliminary driver by Angelo Salese
|
||||||
|
|
||||||
|
|
||||||
11/09/2011 - modernised. The portable doesn't seem to have
|
|
||||||
scroll registers, and it sets the palette to black.
|
|
||||||
I've added a temporary video output so that you can get
|
|
||||||
an idea of what the screen should look like. [Robbbert]
|
|
||||||
|
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -84,8 +79,8 @@ public:
|
|||||||
, m_centronics(*this, CENTRONICS_TAG)
|
, m_centronics(*this, CENTRONICS_TAG)
|
||||||
, m_cent_data_out(*this, "cent_data_out")
|
, m_cent_data_out(*this, "cent_data_out")
|
||||||
, m_irqs(*this, "irqs")
|
, m_irqs(*this, "irqs")
|
||||||
, m_p_scrollram(*this, "p_scrollram")
|
, m_p_scrollram(*this, "scrollram")
|
||||||
, m_p_paletteram(*this, "p_paletteram")
|
, m_p_paletteram(*this, "paletteram")
|
||||||
, m_palette(*this, "palette")
|
, m_palette(*this, "palette")
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
@ -272,9 +267,9 @@ void f1_state::act_f1_mem(address_map &map)
|
|||||||
{
|
{
|
||||||
map.unmap_value_high();
|
map.unmap_value_high();
|
||||||
map(0x00000, 0x01dff).ram();
|
map(0x00000, 0x01dff).ram();
|
||||||
map(0x01e00, 0x01fff).ram().share("p_scrollram");
|
map(0x01e00, 0x01fff).ram().share("scrollram");
|
||||||
map(0x02000, 0x3ffff).ram();
|
map(0x02000, 0x3ffff).ram();
|
||||||
map(0xe0000, 0xe001f).rw(FUNC(f1_state::palette_r), FUNC(f1_state::palette_w)).share("p_paletteram");
|
map(0xe0000, 0xe001f).rw(FUNC(f1_state::palette_r), FUNC(f1_state::palette_w)).share("paletteram");
|
||||||
map(0xf8000, 0xfffff).rom().region(I8086_TAG, 0);
|
map(0xf8000, 0xfffff).rom().region(I8086_TAG, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Miodrag Milanovic, Robbbert
|
// copyright-holders:Miodrag Milanovic
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
CM-1800
|
CM-1800
|
||||||
|
@ -36,12 +36,6 @@ ToDo:
|
|||||||
- Memory mapping unit (74LS610)
|
- Memory mapping unit (74LS610)
|
||||||
- Various CRU I/O
|
- Various CRU I/O
|
||||||
|
|
||||||
Note that the MAME implementation of CRU addresses is not the same as real
|
|
||||||
hardware. For writing, MAME uses the correct address (R12/2 + offset), with
|
|
||||||
the bit (0 or 1), being in 'data'. However, for reading, 8 CRU bits are
|
|
||||||
packed into a single address-byte (CRU 0 = bit 0, etc). So the address is
|
|
||||||
(R12/2 + offset) >> 3.
|
|
||||||
|
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "emu.h"
|
#include "emu.h"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:R. Belmont, Robbbert
|
// copyright-holders:R. Belmont
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
Micro Craft Dimension 68000
|
Micro Craft Dimension 68000
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Wilbert Pol, Robbbert
|
// copyright-holders:Wilbert Pol
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
|
|
||||||
Wave Mate Jupiter
|
Wave Mate Jupiter
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Miodrag Milanovic, Robbbert
|
// copyright-holders:Miodrag Milanovic
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
mc-CP/M-Computer
|
mc-CP/M-Computer
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:rfka01, Robbbert
|
// copyright-holders:rfka01
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
Mikrocomputer fuer Ausbildung
|
Mikrocomputer fuer Ausbildung
|
||||||
|
@ -328,7 +328,7 @@ void mkit09a_state::mkit09a(machine_config &config)
|
|||||||
m_pia->readpb_handler().set(FUNC(mkit09a_state::pb_r));
|
m_pia->readpb_handler().set(FUNC(mkit09a_state::pb_r));
|
||||||
m_pia->writepa_handler().set(FUNC(mkit09a_state::pa_w));
|
m_pia->writepa_handler().set(FUNC(mkit09a_state::pa_w));
|
||||||
m_pia->writepb_handler().set(FUNC(mkit09a_state::pb_w));
|
m_pia->writepb_handler().set(FUNC(mkit09a_state::pb_w));
|
||||||
m_pia->cb2_handler().set([] (bool state) { }); // stop errorlog filling up - is it a keyclick?
|
m_pia->cb2_handler().set_nop(); // stop errorlog filling up - is it a keyclick?
|
||||||
m_pia->irqa_handler().set_inputline("maincpu", M6809_IRQ_LINE);
|
m_pia->irqa_handler().set_inputline("maincpu", M6809_IRQ_LINE);
|
||||||
m_pia->irqb_handler().set_inputline("maincpu", M6809_IRQ_LINE);
|
m_pia->irqb_handler().set_inputline("maincpu", M6809_IRQ_LINE);
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* * 9005
|
* * 9005
|
||||||
*
|
*
|
||||||
* The basis of this driver was influenced by the zexall.c driver by
|
* The basis of this driver was influenced by the zexall.c driver by
|
||||||
* Jonathan Gevaryahu and Robbbert.
|
* Jonathan Gevaryahu.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* Special Thanks to:
|
* Special Thanks to:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Robbbert, hap
|
// copyright-holders:hap
|
||||||
/****************************************************************************************
|
/****************************************************************************************
|
||||||
|
|
||||||
2018-09-15
|
2018-09-15
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:BSD-3-Clause
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Jonathan Gevaryahu, Robbbert
|
// copyright-holders:Jonathan Gevaryahu
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
Self Contained zexall 'Z80 instruction exerciser' test driver
|
Self Contained zexall 'Z80 instruction exerciser' test driver
|
||||||
|
Loading…
Reference in New Issue
Block a user