Previous 199869 Revisions Next

r23908 Monday 24th June, 2013 at 11:58:13 UTC by Miodrag Milanović
fix for Fabio (nw)
[src/emu/cpu/lr35902]lr35902.c lr35902.h

trunk/src/emu/cpu/lr35902/lr35902.c
r23907r23908
4646#define HALTED  0x02
4747
4848
49const UINT8 lr35902_cpu_device::FLAG_Z = 0x80;
50const UINT8 lr35902_cpu_device::FLAG_N = 0x40;
51const UINT8 lr35902_cpu_device::FLAG_H = 0x20;
52const UINT8 lr35902_cpu_device::FLAG_C = 0x10;
53
4954//**************************************************************************
5055//  LR35902 DEVICE
5156//**************************************************************************
trunk/src/emu/cpu/lr35902/lr35902.h
r23907r23908
112112   const struct lr35902_config *m_config;
113113
114114   /* Flag bit definitions */
115   static const UINT8 FLAG_Z = 0x80;
116   static const UINT8 FLAG_N = 0x40;
117   static const UINT8 FLAG_H = 0x20;
118   static const UINT8 FLAG_C = 0x10;
115   static const UINT8 FLAG_Z;
116   static const UINT8 FLAG_N;
117   static const UINT8 FLAG_H;
118   static const UINT8 FLAG_C;
119119};
120120
121121extern const device_type LR35902;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team