Remove JUMP_STACK and CALL_STACK

Any program that generates addresses at runtime can be easily
expressed through fixed address jumps and calls.  No need for them.
This commit is contained in:
2024-07-07 02:57:19 +01:00
parent ebdb1a948d
commit edf90780af
3 changed files with 5 additions and 31 deletions

View File

@@ -168,7 +168,6 @@ typedef enum
// Program control flow
OP_JUMP_ABS,
OP_JUMP_STACK,
OP_JUMP_IF_BYTE,
OP_JUMP_IF_SHORT,
OP_JUMP_IF_HWORD,
@@ -176,7 +175,6 @@ typedef enum
// Subroutines
OP_CALL,
OP_CALL_STACK,
OP_RET,
// Should not be an opcode