Skip to content

Commit 13eddc8

Browse files
committed
igs/igs_m027.cpp, igs/igs_m027xa.cpp: Miscellaneous improvements:
* igs/igs_m027.cpp: Added memory clear switch to clear memory contents when power is removed (hard reset with the switch on to clear NVRAM). * igs/igs_m027xa.cpp: Got rid of hopper from Crazy Bugs (V103JP) since there appears to be no way to use it and exposed hopper switch as a user input so it can still be tested. * igs/igs_m027xa.cpp: Got rid of third bank of DIP switches from Crazy Bugs (V103JP) as comments indicate it isn't physically present (although it is displayed in the input test). * Use mnemonic short names for clones.
1 parent 2901aa5 commit 13eddc8

File tree

6 files changed

+227
-264
lines changed

6 files changed

+227
-264
lines changed

src/devices/cpu/i386/i386priv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ extern int i386_parity_table[256];
327327
#define MMX(n) (*((MMX_REG *)(&m_x87_reg[(n)].low)))
328328
#define XMM(n) m_sse_reg[(n)]
329329

330-
#define FLAG_DIRTY 0x100 // VTLB flag
330+
#define FLAG_DIRTY 0x100 // VTLB flag
331331
#define CYCLES_NUM(x) (m_cycles -= (x))
332332

333333
#define FAULT(fault,error) {m_ext = 1; i386_trap_with_error(fault,0,0,error); return;}

src/devices/cpu/mips/r4000.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,13 @@
2727
*/
2828

2929
#include "emu.h"
30-
#include "divtlb.h"
31-
#include "debug/debugcpu.h"
3230
#include "r4000.h"
31+
3332
#include "mips3dsm.h"
33+
34+
#include "divtlb.h"
35+
#include "debug/debugcpu.h"
36+
3437
#include "unicode.h"
3538

3639
#include "softfloat3/source/include/softfloat.h"

0 commit comments

Comments
 (0)