Archived
1
0

Update main.c

This commit is contained in:
Erick
2022-01-28 00:44:27 +01:00
parent e4110bf842
commit 290baa7bd1
+4 -2
View File
@@ -4,6 +4,7 @@
Written by Erick Ahmed, 2022
*/
#include <stdint.h>>
/* Initializing 128kb of memory */
@@ -49,7 +50,8 @@ enum {
/* Creating condition flags */
enum {
FL_POS = 1 << 0, // P
FL_POS = 1, // P
FL_ZRO = 1 << 1, // Z
FL_NEG = 1 << 2, // N
}
}