diff options
| author | iamcheeseman <[email protected]> | 2026-04-06 17:04:05 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-04-06 17:06:53 -0400 |
| commit | 957c64c7b8b5e98d8a03dd84c7e27e7991fb9dbc (patch) | |
| tree | f5fc230703791cee8d8e7851fb87eaef07ae63a2 /uscript/xbytecode.h | |
Initial commit
Diffstat (limited to 'uscript/xbytecode.h')
| -rw-r--r-- | uscript/xbytecode.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/uscript/xbytecode.h b/uscript/xbytecode.h new file mode 100644 index 0000000..4372ea5 --- /dev/null +++ b/uscript/xbytecode.h @@ -0,0 +1,32 @@ +BC(LOAD) +BC(LOAD_FUNC) +BC(SMALL_INT) +BC(FALSE) +BC(TRUE) +BC(ZILCH) +BC(GET_LOCAL) +BC(SET_LOCAL) +BC(GET_UPVAL) +BC(SET_UPVAL) +BC(POP) +BC(POP_UPVAL) +BC(ADD) +BC(SUB) +BC(MULT) +BC(DIV) +BC(MOD) +BC(GT) +BC(GTE) +BC(LT) +BC(LTE) +BC(NEG) +BC(NOT) +BC(EQL) +BC(NEQL) +BC(CONCAT) +BC(JMP) +BC(FALSEY_JMP) +BC(LOOP) +BC(PRINT) +BC(CALL) +BC(RET) |
