summaryrefslogtreecommitdiff
path: root/bcc/condcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'bcc/condcode.h')
-rw-r--r--bcc/condcode.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/bcc/condcode.h b/bcc/condcode.h
new file mode 100644
index 0000000..9b047df
--- /dev/null
+++ b/bcc/condcode.h
@@ -0,0 +1,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