generic machine is now bookkeeping (nw)

This commit is contained in:
Miodrag Milanovic 2016-01-10 11:39:38 +01:00
parent 726f7958ca
commit 283fbf13a4
4 changed files with 10 additions and 10 deletions

View File

@ -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",

View File

@ -2,9 +2,9 @@
// copyright-holders:Nicola Salmoria
/*********************************************************************
generic.c
bookkeeping.c
Generic simple machine functions.
Bookkeeping simple machine functions.
*********************************************************************/

View File

@ -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__ */

View File

@ -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__ */