VM: added declaration for the mark bit

This commit is contained in:
Andrew Scott 2024-08-19 16:20:25 -04:00
parent d89f7e13cf
commit 0707fd4ca4
Signed by: a
GPG key ID: 7CD5A5977E4931C1

1
vm.h
View file

@ -13,6 +13,7 @@ enum garbageData {
struct garbageObject {
enum garbageData type;
struct garbageObject *next;
unsigned char mark;
union {
int value;