sprintf_malloc

This commit is contained in:
2024-11-16 19:36:17 +05:00
parent b8296a45a7
commit 83172df776
7 changed files with 41 additions and 12 deletions

View File

@@ -18,7 +18,7 @@ typedef struct Instruction {
/// @brief get instruction info from table
/// @param opcode any byte
/// @return ptr to struct or NULL
NULLABLE(const Instruction* Instruction_getFromOpcode(u8 opcode));
const Instruction* NULLABLE(Instruction_getFromOpcode)(u8 opcode);
i32 NOP_impl(VM* vm, size_t pos);
i32 PUSH_impl(VM* vm, size_t pos);