write bytecode debugging script and start working on functions

This commit is contained in:
2025-06-15 05:05:33 +01:00
parent dd1ba0c0a6
commit e5e4f22481
13 changed files with 204 additions and 36 deletions

View File

@@ -0,0 +1,9 @@
#include "function.h"
#include "../translator.h"
#include <stddef.h>
#include <stdio.h>
#include <string.h>
size_t translate_parsed_function(Translated *translated,
ParsedValue *parsedValue) {
return 0;
}