Change some SkyEye defines to const ints
This prevents them from interfering with other constants defined in different namespaces.
This commit is contained in:
parent
ef1b16a7eb
commit
924bbde89b
|
@ -799,22 +799,22 @@ pascal void SpinCursor (short increment); /* copied from CursorCtl.h */
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
#include "tb.h"
|
#include "tb.h"
|
||||||
*/
|
*/
|
||||||
#define EQ 0
|
const int EQ = 0;
|
||||||
#define NE 1
|
const int NE = 1;
|
||||||
#define CS 2
|
const int CS = 2;
|
||||||
#define CC 3
|
const int CC = 3;
|
||||||
#define MI 4
|
const int MI = 4;
|
||||||
#define PL 5
|
const int PL = 5;
|
||||||
#define VS 6
|
const int VS = 6;
|
||||||
#define VC 7
|
const int VC = 7;
|
||||||
#define HI 8
|
const int HI = 8;
|
||||||
#define LS 9
|
const int LS = 9;
|
||||||
#define GE 10
|
const int GE = 10;
|
||||||
#define LT 11
|
const int LT = 11;
|
||||||
#define GT 12
|
const int GT = 12;
|
||||||
#define LE 13
|
const int LE = 13;
|
||||||
#define AL 14
|
const int AL = 14;
|
||||||
#define NV 15
|
const int NV = 15;
|
||||||
|
|
||||||
#ifndef NFLAG
|
#ifndef NFLAG
|
||||||
#define NFLAG state->NFlag
|
#define NFLAG state->NFlag
|
||||||
|
|
|
@ -25,24 +25,6 @@
|
||||||
|
|
||||||
#define DEBUG(...) DEBUG_LOG(ARM11, __VA_ARGS__)
|
#define DEBUG(...) DEBUG_LOG(ARM11, __VA_ARGS__)
|
||||||
|
|
||||||
/* Condition code values. */
|
|
||||||
#define EQ 0
|
|
||||||
#define NE 1
|
|
||||||
#define CS 2
|
|
||||||
#define CC 3
|
|
||||||
#define MI 4
|
|
||||||
#define PL 5
|
|
||||||
#define VS 6
|
|
||||||
#define VC 7
|
|
||||||
#define HI 8
|
|
||||||
#define LS 9
|
|
||||||
#define GE 10
|
|
||||||
#define LT 11
|
|
||||||
#define GT 12
|
|
||||||
#define LE 13
|
|
||||||
#define AL 14
|
|
||||||
#define NV 15
|
|
||||||
|
|
||||||
/* Shift Opcodes. */
|
/* Shift Opcodes. */
|
||||||
#define LSL 0
|
#define LSL 0
|
||||||
#define LSR 1
|
#define LSR 1
|
||||||
|
|
Reference in New Issue