mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
consistency fixes and add missed files (nw)
This commit is contained in:
parent
9f3cd785b2
commit
39f3243a20
@ -1,4 +1,5 @@
|
||||
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Aaron Giles
|
||||
/*
|
||||
|
||||
HNZVC
|
||||
|
@ -1,4 +1,5 @@
|
||||
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Aaron Giles
|
||||
const m6800_cpu_device::op_func m6800_cpu_device::m6800_insn[0x100] = {
|
||||
&m6800_cpu_device::illegal,&m6800_cpu_device::nop, &m6800_cpu_device::illegal,&m6800_cpu_device::illegal,&m6800_cpu_device::illegal,&m6800_cpu_device::illegal,&m6800_cpu_device::tap, &m6800_cpu_device::tpa,
|
||||
&m6800_cpu_device::inx, &m6800_cpu_device::dex, &m6800_cpu_device::clv, &m6800_cpu_device::sev, &m6800_cpu_device::clc, &m6800_cpu_device::sec, &m6800_cpu_device::cli, &m6800_cpu_device::sei,
|
||||
|
@ -1,4 +1,5 @@
|
||||
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Aaron Giles
|
||||
/*
|
||||
|
||||
HNZC
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Steve Ellenoff
|
||||
/*******************************************************************************************
|
||||
NOTE: All registers are accessed directly, instead of using the SFR_R() function for speed
|
||||
Direct register access is availabe from the R_(register name) macros.. ex: ACC for the ACC
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license: BSD-3-Clause
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders: Dirk Best
|
||||
/*************************************************************************
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license: BSD-3-Clause
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders: Dirk Best
|
||||
/*************************************************************************
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Tim Schuerewegen
|
||||
/*******************************************************************************
|
||||
|
||||
Samsung S3C2400 / S3C2410 / S3C2440
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Angelo Salese
|
||||
/* Sega 315-5641 / D77591 / 9442CA010 */
|
||||
|
||||
#include "emu.h"
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Angelo Salese
|
||||
/* Sega 315-5641 / D77591 / 9442CA010 */
|
||||
|
||||
// this is the PICO sound chip, we are not sure if it's the same as a 7759 or not, it requires FIFO logic
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:David Haywood
|
||||
/* blitter function */
|
||||
|
||||
void epic12_device::FUNCNAME(BLIT_PARAMS)
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:David Haywood
|
||||
/* This is the inner-most loop code (per-pixel) and thus the most performance sensitive part */
|
||||
|
||||
#if FLIPX == 1
|
||||
|
@ -1,4 +1,5 @@
|
||||
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Aaron Giles
|
||||
/***************************************************************************
|
||||
GAME-SPECIFIC RASTERIZERS
|
||||
***************************************************************************/
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Carl
|
||||
#include "atom_dsk.h"
|
||||
|
||||
atom_format::atom_format() : wd177x_format(formats)
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Carl
|
||||
#ifndef __ATOM_DSK_H__
|
||||
#define __ATOM_DSK_H__
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#include "nlm_cd4xxx.h"
|
||||
|
||||
#include "devices/nld_truthtable.h"
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#ifndef NLD_CD4XXX_H_
|
||||
#define NLD_CD4XXX_H_
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#include "nlm_opamp.h"
|
||||
|
||||
#include "analog/nld_opamps.h"
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#ifndef NLM_OPAMP_H_
|
||||
#define NLM_OPAMP_H_
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#include "nlm_other.h"
|
||||
|
||||
#include "devices/nld_truthtable.h"
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#ifndef NLM_OTHER_H_
|
||||
#define NLM_OTHER_H_
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#include "nlm_ttl74xx.h"
|
||||
|
||||
#include "devices/nld_truthtable.h"
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#ifndef NLD_TTL74XX_H_
|
||||
#define NLD_TTL74XX_H_
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Couriersud
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
#include "plib/poptions.h"
|
||||
|
@ -1,4 +1,5 @@
|
||||
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Andrew Gardner, Couriersud
|
||||
#include "netlist/devices/net_lib.h"
|
||||
|
||||
#ifndef USE_FRONTIERS
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:GPL2+
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Felipe Sanches
|
||||
/***************************************************************************
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:GPL2+
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:FelipeSanches
|
||||
/*
|
||||
* canon_s80.c
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Sergey Svishchev
|
||||
/***************************************************************************
|
||||
|
||||
KCGD (Kontroller Cvetnogo Graficheskogo Displeya = Colour Graphics
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Olivier Galibert
|
||||
/*
|
||||
Rather skeleton driver for a LG GP40NW10 usb dvd writer.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:GPL2+
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Felipe Sanches
|
||||
/*************************************************************************
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Cowering, Olivier Galibert
|
||||
/*
|
||||
Brother MT735 thermal printer
|
||||
*/
|
||||
|
@ -1,3 +1,6 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:David Haywood
|
||||
|
||||
/* Sansa Fuze */
|
||||
|
||||
// info can be found at
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:David Haywood
|
||||
/* Sega Picture Magic (codename JANUS) */
|
||||
// http://segaretro.org/Sega_Picture_Magic
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:GPL2+
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:FelipeSanches, Sandro Ronco
|
||||
//
|
||||
// Wacky Gator
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:GPL2+
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:FelipeSanches
|
||||
/*
|
||||
ZAP - Z80 Applications Processor
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:BSD-3
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Andreas Naive
|
||||
/****************************************************************************
|
||||
Namco System 10 decryption emulation
|
||||
|
@ -1,4 +1,4 @@
|
||||
// license:BSD-3
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Andreas Naive
|
||||
|
||||
#ifndef _NS10CRYPT_H_
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Bryan McPhail, Acho A. Tang, Nicola Salmoria
|
||||
typedef device_delegate<void (int&, int&, int&, int&)> snk68_tile_indirection_delegate;
|
||||
|
||||
#define MCFG_SNK68_SPR_GFXDECODE(_gfxtag) \
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
#include "statereader.h"
|
||||
|
||||
uint64_t state_reader::get_enum_from_value(const Value& value, std::string name, const uint64_t default_value, const string_to_enum* enums, const int count)
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
#pragma once
|
||||
|
||||
#ifndef __DRAWBGFX_STATE_READER__
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
#include <bgfx/bgfx.h>
|
||||
|
||||
#include "writereader.h"
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
#pragma once
|
||||
|
||||
#ifndef __DRAWBGFX_WRITE_READER__
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
#pragma once
|
||||
|
||||
#ifndef __RECTPACKER_H__
|
||||
|
@ -1,3 +1,5 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
#pragma once
|
||||
|
||||
#ifndef __RENDER_BGFX__
|
||||
|
Loading…
Reference in New Issue
Block a user