fix for Fabio (nw)

This commit is contained in:
Miodrag Milanovic 2013-06-24 11:58:13 +00:00
parent 609f0a26ed
commit 15996c8e36
2 changed files with 9 additions and 4 deletions

View File

@ -46,6 +46,11 @@
#define HALTED 0x02
const UINT8 lr35902_cpu_device::FLAG_Z = 0x80;
const UINT8 lr35902_cpu_device::FLAG_N = 0x40;
const UINT8 lr35902_cpu_device::FLAG_H = 0x20;
const UINT8 lr35902_cpu_device::FLAG_C = 0x10;
//**************************************************************************
// LR35902 DEVICE
//**************************************************************************

View File

@ -112,10 +112,10 @@ protected:
const struct lr35902_config *m_config;
/* Flag bit definitions */
static const UINT8 FLAG_Z = 0x80;
static const UINT8 FLAG_N = 0x40;
static const UINT8 FLAG_H = 0x20;
static const UINT8 FLAG_C = 0x10;
static const UINT8 FLAG_Z;
static const UINT8 FLAG_N;
static const UINT8 FLAG_H;
static const UINT8 FLAG_C;
};
extern const device_type LR35902;