summaryrefslogtreecommitdiff
path: root/bcc/condcode.h
blob: 9b047df1eca714a5247c79d2bba4d6acbd63f457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* condcode.h - condition codes for bcc */

/* Copyright (C) 1992 Bruce Evans */

#define EQ 0
#define NE 1
#define RA 2
#define RN 3
#define LT 4
#define GE 5
#define LE 6
#define GT 7
#define LO 8
#define HS 9
#define LS 10
#define HI 11