mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
generic machine is now bookkeeping (nw)
This commit is contained in:
parent
726f7958ca
commit
283fbf13a4
@ -49,6 +49,8 @@ files {
|
||||
MAME_DIR .. "src/emu/attotime.h",
|
||||
MAME_DIR .. "src/emu/audit.cpp",
|
||||
MAME_DIR .. "src/emu/audit.h",
|
||||
MAME_DIR .. "src/emu/bookkeeping.cpp",
|
||||
MAME_DIR .. "src/emu/bookkeeping.h",
|
||||
MAME_DIR .. "src/emu/cheat.cpp",
|
||||
MAME_DIR .. "src/emu/cheat.h",
|
||||
MAME_DIR .. "src/emu/clifront.cpp",
|
||||
@ -272,8 +274,6 @@ files {
|
||||
MAME_DIR .. "src/devices/machine/buffer.h",
|
||||
MAME_DIR .. "src/devices/machine/clock.cpp",
|
||||
MAME_DIR .. "src/devices/machine/clock.h",
|
||||
MAME_DIR .. "src/emu/machine/generic.cpp",
|
||||
MAME_DIR .. "src/emu/machine/generic.h",
|
||||
MAME_DIR .. "src/devices/machine/keyboard.cpp",
|
||||
MAME_DIR .. "src/devices/machine/keyboard.h",
|
||||
MAME_DIR .. "src/devices/machine/laserdsc.cpp",
|
||||
|
@ -2,9 +2,9 @@
|
||||
// copyright-holders:Nicola Salmoria
|
||||
/*********************************************************************
|
||||
|
||||
generic.c
|
||||
bookkeeping.c
|
||||
|
||||
Generic simple machine functions.
|
||||
Bookkeeping simple machine functions.
|
||||
|
||||
*********************************************************************/
|
||||
|
@ -2,16 +2,16 @@
|
||||
// copyright-holders:Nicola Salmoria
|
||||
/*********************************************************************
|
||||
|
||||
generic.h
|
||||
bookkeeping.h
|
||||
|
||||
Generic simple machine functions.
|
||||
Bookkeeping simple machine functions.
|
||||
|
||||
*********************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __MACHINE_GENERIC_H__
|
||||
#define __MACHINE_GENERIC_H__
|
||||
#ifndef __BOOKKEEPING_H__
|
||||
#define __BOOKKEEPING_H__
|
||||
|
||||
|
||||
|
||||
@ -61,4 +61,4 @@ int coin_lockout_get_state(running_machine &machine, int num);
|
||||
/* enable/disable global coin lockout */
|
||||
void coin_lockout_global_w(running_machine &machine, int on);
|
||||
|
||||
#endif /* __MACHINE_GENERIC_H__ */
|
||||
#endif /* __BOOKKEEPING_H__ */
|
@ -110,7 +110,7 @@ typedef device_t * (*machine_config_constructor)(machine_config &config, device_
|
||||
#include "devcb.h"
|
||||
#include "dispatch.h"
|
||||
#include "drivers/xtal.h"
|
||||
#include "machine/generic.h"
|
||||
#include "bookkeeping.h"
|
||||
#include "video/generic.h"
|
||||
|
||||
#endif /* __EMU_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user