Released my copyright on some drivers - i didn't do much work on them.

This commit is contained in:
Robbbert 2022-04-17 01:52:22 +10:00
parent bcf55960dc
commit ed13b90a15
13 changed files with 15 additions and 26 deletions

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:Angelo Salese, Robbbert
// copyright-holders:Angelo Salese
/***************************************************************************
A5105

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:Robbbert, Nigel Barnes
// copyright-holders:Nigel Barnes
/***************************************************************************
Acorn System 2, 3, 4, and 5

View File

@ -7,11 +7,6 @@
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_cent_data_out(*this, "cent_data_out")
, m_irqs(*this, "irqs")
, m_p_scrollram(*this, "p_scrollram")
, m_p_paletteram(*this, "p_paletteram")
, m_p_scrollram(*this, "scrollram")
, m_p_paletteram(*this, "paletteram")
, m_palette(*this, "palette")
{ }
@ -272,9 +267,9 @@ void f1_state::act_f1_mem(address_map &map)
{
map.unmap_value_high();
map(0x00000, 0x01dff).ram();
map(0x01e00, 0x01fff).ram().share("p_scrollram");
map(0x01e00, 0x01fff).ram().share("scrollram");
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);
}

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic, Robbbert
// copyright-holders:Miodrag Milanovic
/***************************************************************************
CM-1800

View File

@ -36,12 +36,6 @@ ToDo:
- Memory mapping unit (74LS610)
- 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"

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:R. Belmont, Robbbert
// copyright-holders:R. Belmont
/***************************************************************************
Micro Craft Dimension 68000

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol, Robbbert
// copyright-holders:Wilbert Pol
/**************************************************************************
Wave Mate Jupiter

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic, Robbbert
// copyright-holders:Miodrag Milanovic
/***************************************************************************
mc-CP/M-Computer

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:rfka01, Robbbert
// copyright-holders:rfka01
/***************************************************************************
Mikrocomputer fuer Ausbildung

View File

@ -328,7 +328,7 @@ void mkit09a_state::mkit09a(machine_config &config)
m_pia->readpb_handler().set(FUNC(mkit09a_state::pb_r));
m_pia->writepa_handler().set(FUNC(mkit09a_state::pa_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->irqb_handler().set_inputline("maincpu", M6809_IRQ_LINE);

View File

@ -16,7 +16,7 @@
* * 9005
*
* The basis of this driver was influenced by the zexall.c driver by
* Jonathan Gevaryahu and Robbbert.
* Jonathan Gevaryahu.
*
*
* Special Thanks to:

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:Robbbert, hap
// copyright-holders:hap
/****************************************************************************************
2018-09-15

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause
// copyright-holders:Jonathan Gevaryahu, Robbbert
// copyright-holders:Jonathan Gevaryahu
/******************************************************************************
Self Contained zexall 'Z80 instruction exerciser' test driver