Initial commit

This commit is contained in:
Zoe
2025-02-06 00:24:52 -06:00
commit 91fb30ddc2
15 changed files with 1163 additions and 0 deletions

3
disassembler/.clangd Normal file
View File

@@ -0,0 +1,3 @@
CompileFlags:
Add:
- -I../lib

8
disassembler/main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "reader.hpp"
#include <cstdio>
int main() {
printf("Hello World!\n");
return 0;
}