mirror of
https://github.com/holub/mame
synced 2025-06-29 23:48:56 +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
|
||||
/*
|
||||
Motorola M68HC11 disassembler
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
|
||||
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
|
||||
/*
|
||||
Motorola MC68HC11 emulator
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde, Angelo Salese
|
||||
#pragma once
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* compute operations */
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* Analog Devices ADSP-2106x SHARC emulator v2.0
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
#pragma once
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* SHARC DMA operations */
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
Analog Devices ADSP-2106x SHARC Disassembler
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
static const char ureg_names[256][16] =
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* SHARC memory operations */
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
|
||||
const adsp21062_device::SHARC_OP adsp21062_device::s_sharc_opcode_table[] =
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
#define SIGN_EXTEND6(x) (((x) & 0x20) ? (0xffffffc0 | (x)) : (x))
|
||||
#define SIGN_EXTEND24(x) (((x) & 0x800000) ? (0xff000000 | (x)) : (x))
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
// stack is LIFO and is 8 levels deep, there is no stackpointer on the real chip
|
||||
void tms32051_device::PUSH_STACK(UINT16 pc)
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
const tms32051_device::opcode_func tms32051_device::s_opcode_table[256] =
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
#include "emu.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
Texas Instruments TMS320C51 DSP Emulator
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
#pragma once
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
// TMS32082 MP Disassembler
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
// TMS32082 PP Disassembler
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
// TMS320C82 Master Processor core execution
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
Texas Instruments TMS320C82 DSP Emulator
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
#pragma once
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
Ricoh RF5C400 emulator
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* Konami Cobra System
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* Konami FireBeat
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:R. Belmont
|
||||
/*
|
||||
Cristaltec "Game Cristal" (MAME bootleg)
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* Konami GTI Club System
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* Konami Hornet System
|
||||
Driver by Ville Linde
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
Konami M2 Hardware
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* Atari MediaGX
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde
|
||||
/*
|
||||
Sega Model 3
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* Konami NWK-TR System
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:R. Belmont
|
||||
/*
|
||||
Pinball 2000
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde, hap, ???
|
||||
/*
|
||||
Seibu SPI Hardware
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
Taito Type-Zero hardware
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/* Taito Wolf System
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
Konami Ultra Sports hardware
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
|
||||
Konami Viper Hardware Overview (last updated 5th June 2011 10:56pm)
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde
|
||||
/*
|
||||
Konami 'ZR107' Hardware
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde
|
||||
#include "video/poly.h"
|
||||
#include "bus/scsi/scsi.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde, hap, ???
|
||||
/******************************************************************************
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde, Angelo Salese, hap, ???
|
||||
/*************************************************************************
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde
|
||||
/*
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde, hap, ???
|
||||
#include "emu.h"
|
||||
#include "machine/seibuspi.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Andrew Gardiner, R. Belmont, Ville Linde
|
||||
#include "emu.h"
|
||||
#include "video/poly.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
/******************************************************************************
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
/******************************************************************************
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
/******************************************************************************
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
/******************************************************************************
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
/******************************************************************************
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
/******************************************************************************
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:???
|
||||
// copyright-holders:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
/******************************************************************************
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde, hap, ???
|
||||
/******************************************************************************
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:???
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ville Linde, Angelo Salese, hap, ???
|
||||
/*************************************************************************
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user