| 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 |
| r23907 | r23908 | |
|---|---|---|
| 46 | 46 | #define HALTED 0x02 |
| 47 | 47 | |
| 48 | 48 | |
| 49 | const UINT8 lr35902_cpu_device::FLAG_Z = 0x80; | |
| 50 | const UINT8 lr35902_cpu_device::FLAG_N = 0x40; | |
| 51 | const UINT8 lr35902_cpu_device::FLAG_H = 0x20; | |
| 52 | const UINT8 lr35902_cpu_device::FLAG_C = 0x10; | |
| 53 | ||
| 49 | 54 | //************************************************************************** |
| 50 | 55 | // LR35902 DEVICE |
| 51 | 56 | //************************************************************************** |
| r23907 | r23908 | |
|---|---|---|
| 112 | 112 | const struct lr35902_config *m_config; |
| 113 | 113 | |
| 114 | 114 | /* 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; | |
| 119 | 119 | }; |
| 120 | 120 | |
| 121 | 121 | extern const device_type LR35902; |
| Previous | 199869 Revisions | Next |