[UNTESTED] refactor how instructions are parsed

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-09-14 10:12:30 +05:30
parent 3cf5cbd024
commit 0b674c7c64
11 changed files with 742 additions and 389 deletions

View File

@@ -4,7 +4,7 @@
#include <string>
#include <vector>
typedef struct {
struct Header {
enum class UniqueCode {
Old, // old games
New, // new games
@@ -42,4 +42,4 @@ typedef struct {
BootMode multiboot;
uint32_t multiboot_entrypoint;
uint8_t slave_id;
} Header;
};