fceux/src/x6502abbrev.h

21 lines
462 B
C
Raw Normal View History

#ifndef _X6502ABBREV_H_
#define _X6502ABBREV_H_
//include this file LAST, or else the #defines will overwrite CRT and STL symbols
#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
2008-06-17 23:46:55 +00:00
#endif