1
0
Fork 0
mirror of https://github.com/pnx/m16vm synced 2026-06-16 03:44:55 +02:00

include/instr.h: adding a special OP_NONE opcode.

This commit is contained in:
Henrik Hautakoski 2018-11-24 17:45:20 +01:00
parent 377c008ebe
commit d530dfda63
No known key found for this signature in database
GPG key ID: 839F3A7EAFAEAFAA

View file

@ -33,6 +33,7 @@
#define OP_JMP 7 #define OP_JMP 7
#define OP_JR 8 #define OP_JR 8
#define OP_INT 15 #define OP_INT 15
#define OP_NONE 0xFF
/* Register type */ /* Register type */
struct instr_R { struct instr_R {