Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef DEFS_H
- #define DEFS_H
- #include <stdint.h>
- enum { Mov, Add, Sub, Mul, Div, Mod, Not, And, Or, Xor, BNot, BAnd, BOr, BXor, Jmp, JmpIf, Read, Write };
- enum { Const, Reg, Mem };
- typedef struct
- {
- uint8_t opCode, dstType, srcType;
- uint16_t dst, src;
- }
- command_t;
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement