update for Ville Linde (nw)

This commit is contained in:
Miodrag Milanovic 2015-05-13 16:11:59 +02:00
parent 25ab0e4d3d
commit 451339ceb4
55 changed files with 64 additions and 64 deletions

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* /*
Motorola M68HC11 disassembler Motorola M68HC11 disassembler

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
const mc68hc11_cpu_device::hc11_opcode_list_struct mc68hc11_cpu_device::hc11_opcode_list[] = const mc68hc11_cpu_device::hc11_opcode_list_struct mc68hc11_cpu_device::hc11_opcode_list[] =

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde, Angelo Salese // copyright-holders:Ville Linde, Angelo Salese
/* /*
Motorola MC68HC11 emulator Motorola MC68HC11 emulator

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde, Angelo Salese // copyright-holders:Ville Linde, Angelo Salese
#pragma once #pragma once

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* compute operations */ /* compute operations */

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* Analog Devices ADSP-2106x SHARC emulator v2.0 /* Analog Devices ADSP-2106x SHARC emulator v2.0

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
#pragma once #pragma once

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* SHARC DMA operations */ /* SHARC DMA operations */

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* /*
Analog Devices ADSP-2106x SHARC Disassembler Analog Devices ADSP-2106x SHARC Disassembler

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
static const char ureg_names[256][16] = static const char ureg_names[256][16] =
{ {

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* SHARC memory operations */ /* SHARC memory operations */

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
const adsp21062_device::SHARC_OP adsp21062_device::s_sharc_opcode_table[] = const adsp21062_device::SHARC_OP adsp21062_device::s_sharc_opcode_table[] =

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
#define SIGN_EXTEND6(x) (((x) & 0x20) ? (0xffffffc0 | (x)) : (x)) #define SIGN_EXTEND6(x) (((x) & 0x20) ? (0xffffffc0 | (x)) : (x))
#define SIGN_EXTEND24(x) (((x) & 0x800000) ? (0xff000000 | (x)) : (x)) #define SIGN_EXTEND24(x) (((x) & 0x800000) ? (0xff000000 | (x)) : (x))

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
// stack is LIFO and is 8 levels deep, there is no stackpointer on the real chip // stack is LIFO and is 8 levels deep, there is no stackpointer on the real chip
void tms32051_device::PUSH_STACK(UINT16 pc) void tms32051_device::PUSH_STACK(UINT16 pc)

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
const tms32051_device::opcode_func tms32051_device::s_opcode_table[256] = const tms32051_device::opcode_func tms32051_device::s_opcode_table[256] =
{ {

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
#include "emu.h" #include "emu.h"

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* /*
Texas Instruments TMS320C51 DSP Emulator Texas Instruments TMS320C51 DSP Emulator

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
#pragma once #pragma once

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
// TMS32082 MP Disassembler // TMS32082 MP Disassembler

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
// TMS32082 PP Disassembler // TMS32082 PP Disassembler

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
// TMS320C82 Master Processor core execution // TMS320C82 Master Processor core execution

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* /*
Texas Instruments TMS320C82 DSP Emulator Texas Instruments TMS320C82 DSP Emulator

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ville Linde
/* /*
Ricoh RF5C400 emulator Ricoh RF5C400 emulator

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* Konami Cobra System /* Konami Cobra System

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* Konami FireBeat /* Konami FireBeat

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:R. Belmont // copyright-holders:R. Belmont
/* /*
Cristaltec "Game Cristal" (MAME bootleg) Cristaltec "Game Cristal" (MAME bootleg)

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* Konami GTI Club System /* Konami GTI Club System

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* Konami Hornet System /* Konami Hornet System
Driver by Ville Linde Driver by Ville Linde

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* /*
Konami M2 Hardware Konami M2 Hardware

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* Atari MediaGX /* Atari MediaGX

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde // copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde
/* /*
Sega Model 3 Sega Model 3

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* Konami NWK-TR System /* Konami NWK-TR System

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:R. Belmont // copyright-holders:R. Belmont
/* /*
Pinball 2000 Pinball 2000

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde, hap, ??? // copyright-holders:Ville Linde, hap, ???
/* /*
Seibu SPI Hardware Seibu SPI Hardware

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* /*
Taito Type-Zero hardware Taito Type-Zero hardware

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* Taito Wolf System /* Taito Wolf System

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* /*
Konami Ultra Sports hardware Konami Ultra Sports hardware

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ville Linde
/* /*
Konami Viper Hardware Overview (last updated 5th June 2011 10:56pm) Konami Viper Hardware Overview (last updated 5th June 2011 10:56pm)

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde // copyright-holders:Ville Linde
/* /*
Konami 'ZR107' Hardware Konami 'ZR107' Hardware

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde // copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde
#include "video/poly.h" #include "video/poly.h"
#include "bus/scsi/scsi.h" #include "bus/scsi/scsi.h"

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde, hap, ??? // copyright-holders:Ville Linde, hap, ???
/****************************************************************************** /******************************************************************************

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde, Angelo Salese, hap, ??? // copyright-holders:Ville Linde, Angelo Salese, hap, ???
/************************************************************************* /*************************************************************************

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde // copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde
/* /*

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde, hap, ??? // copyright-holders:Ville Linde, hap, ???
#include "emu.h" #include "emu.h"
#include "machine/seibuspi.h" #include "machine/seibuspi.h"

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde // copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde
#include "emu.h" #include "emu.h"
#include "video/poly.h" #include "video/poly.h"

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ryan Holtz
/****************************************************************************** /******************************************************************************

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ryan Holtz
/****************************************************************************** /******************************************************************************

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ryan Holtz
/****************************************************************************** /******************************************************************************

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ryan Holtz
/****************************************************************************** /******************************************************************************

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ryan Holtz
/****************************************************************************** /******************************************************************************

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ryan Holtz
/****************************************************************************** /******************************************************************************

View File

@ -1,5 +1,5 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:??? // copyright-holders:Ryan Holtz
/****************************************************************************** /******************************************************************************

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde, hap, ??? // copyright-holders:Ville Linde, hap, ???
/****************************************************************************** /******************************************************************************

View File

@ -1,4 +1,4 @@
// license:??? // license:BSD-3-Clause
// copyright-holders:Ville Linde, Angelo Salese, hap, ??? // copyright-holders:Ville Linde, Angelo Salese, hap, ???
/************************************************************************* /*************************************************************************