refactor: make linter happy

also add a few unused coprocessor instructions

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-09-14 01:07:41 +05:30
parent 387f3c8f07
commit a0d2297896
19 changed files with 391 additions and 240 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include <cstdint>
#include <string>
#include <vector>
typedef struct {
@@ -33,9 +34,9 @@ typedef struct {
};
uint32_t entrypoint;
char title[12];
std::string title;
std::string title_code;
UniqueCode unique_code;
char title_code[2];
I18n i18n;
uint8_t version;
BootMode multiboot;