This commit is contained in:
Andre Wagner
2026-05-02 09:02:52 -05:00
parent f16f2e0e8e
commit 2e0d615ac5
11 changed files with 143 additions and 52 deletions

View File

@@ -21,6 +21,9 @@ enum class Instruction : uint8_t {
PushConstant8 = 0xa1,
PushConstant16 = 0xc1,
PushConstant32 = 0xe1,
PushFunction8 = 0xa2,
PushFunction16 = 0xc2,
PushFunction32 = 0xe2,
PushZero = 0x00,
PushTrue = 0x01,
NewArray = 0x02,