Initial cpu and instruction parsing
This commit is contained in:
@ -14,4 +14,6 @@ typedef uint64_t u64;
|
||||
#define BIT_SET(a, n, on) (on ? (a) |= (1 << n) : (a) &= !(1 << n))
|
||||
#define BETWEEN(a, b, c) ((a >= b) && (a <= c))
|
||||
|
||||
void delay(u32 ms);
|
||||
void delay(u32 ms);
|
||||
|
||||
#define NO_IMPL { fprintf(stderr, "NOT YET IMPLEMENTED\n"); exit(-5); }
|
Reference in New Issue
Block a user