Implemented bucket memory structure for custom allocators

This commit is contained in:
2024-09-07 19:42:50 +10:00
parent 023cf9c8b5
commit 81417e7f32
13 changed files with 275 additions and 44 deletions

View File

@@ -1,5 +1,8 @@
#pragma once
typedef enum Toy_OpcodeType {
TOY_OPCODE_RETURN,
TOY_OPCODE_PASS,
TOY_OPCODE_ERROR,
TOY_OPCODE_EOF,
} Toy_OpcodeType;