add null object and add load const

This commit is contained in:
2025-06-24 03:49:05 +01:00
parent 498cd39c04
commit 908d627962
8 changed files with 94 additions and 24 deletions

View File

@@ -1,9 +1,10 @@
#ifndef RUNTIME_H
#define RUNTIME_H
#include "../translator/translator.h"
#include "internals/hashmap/hashmap.h"
typedef struct {
uint64_t *registers;
ArgonObject **registers;
size_t head;
} RuntimeState;