mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
update for Ville Linde (nw)
This commit is contained in:
parent
25ab0e4d3d
commit
451339ceb4
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/*
|
/*
|
||||||
Motorola M68HC11 disassembler
|
Motorola M68HC11 disassembler
|
||||||
|
@ -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[] =
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/* compute operations */
|
/* compute operations */
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/* SHARC DMA operations */
|
/* SHARC DMA operations */
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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] =
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/* SHARC memory operations */
|
/* SHARC memory operations */
|
||||||
|
|
||||||
|
@ -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[] =
|
||||||
|
@ -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))
|
||||||
|
@ -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)
|
||||||
|
@ -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] =
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
#include "emu.h"
|
#include "emu.h"
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
// TMS32082 MP Disassembler
|
// TMS32082 MP Disassembler
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
// TMS32082 PP Disassembler
|
// TMS32082 PP Disassembler
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:???
|
// copyright-holders:Ville Linde
|
||||||
/*
|
/*
|
||||||
Ricoh RF5C400 emulator
|
Ricoh RF5C400 emulator
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/* Konami Cobra System
|
/* Konami Cobra System
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/* Konami FireBeat
|
/* Konami FireBeat
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/*
|
/*
|
||||||
Konami M2 Hardware
|
Konami M2 Hardware
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/* Atari MediaGX
|
/* Atari MediaGX
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:R. Belmont
|
// copyright-holders:R. Belmont
|
||||||
/*
|
/*
|
||||||
Pinball 2000
|
Pinball 2000
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/* Taito Wolf System
|
/* Taito Wolf System
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde
|
// copyright-holders:Ville Linde
|
||||||
/*
|
/*
|
||||||
Konami 'ZR107' Hardware
|
Konami 'ZR107' Hardware
|
||||||
|
@ -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"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde, hap, ???
|
// copyright-holders:Ville Linde, hap, ???
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde, Angelo Salese, hap, ???
|
// copyright-holders:Ville Linde, Angelo Salese, hap, ???
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
|
|
||||||
|
@ -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
|
||||||
/*
|
/*
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
@ -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"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:???
|
// copyright-holders:Ryan Holtz
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:???
|
// copyright-holders:Ryan Holtz
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:???
|
// copyright-holders:Ryan Holtz
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:???
|
// copyright-holders:Ryan Holtz
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:???
|
// copyright-holders:Ryan Holtz
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:???
|
// copyright-holders:Ryan Holtz
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:???
|
// copyright-holders:Ryan Holtz
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde, hap, ???
|
// copyright-holders:Ville Linde, hap, ???
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// license:???
|
// license:BSD-3-Clause
|
||||||
// copyright-holders:Ville Linde, Angelo Salese, hap, ???
|
// copyright-holders:Ville Linde, Angelo Salese, hap, ???
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user