add instructions for loading string const to register

This commit is contained in:
2025-06-13 15:42:48 +01:00
parent 0adf3c247a
commit 937a6598fa
6 changed files with 13 additions and 3064 deletions

View File

@@ -7,7 +7,8 @@
#include "../parser/parser.h"
#include "../memory.h"
typedef enum { OP_INIT_STRING } OperationType;
typedef enum { OP_LOAD_CONST=255 } OperationType;
typedef enum { OP_TYPE_STRING=255 } types;
typedef struct {
void *data;