mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
29ce302842
remove update check completely. compatibility fixes for newer devkitppc.
27 lines
519 B
C
27 lines
519 B
C
#ifndef _X6502ABBREV_H_
|
|
#define _X6502ABBREV_H_
|
|
|
|
//include this file LAST, or else the #defines will overwrite CRT and STL symbols
|
|
|
|
#ifdef GEKKO
|
|
#undef _X
|
|
#undef _S
|
|
#undef _P
|
|
#endif
|
|
|
|
#define _PC X.PC
|
|
#define _A X.A
|
|
#define _X X.X
|
|
#define _Y X.Y
|
|
#define _S X.S
|
|
#define _P X.P
|
|
#define _PI X.mooPI
|
|
#define _DB X.DB
|
|
#define _count X.count
|
|
#define _tcount X.tcount
|
|
#define _IRQlow X.IRQlow
|
|
#define _jammed X.jammed
|
|
|
|
|
|
#endif
|