Files
voidEmu/disassembler/main.cpp
Zoe 8a682699f6 Fix handling of several instructions
We are now handling all instructions we have implmeented, and their respective flags, correctly and we now pass test 3 and 4 from Timendus' CHIP-8 test suite!
2025-02-06 20:04:56 +00:00

9 lines
139 B
C++

#define BYTECODE_READER_IMPLEMENTATION
#include "reader.hpp"
#include <cstdio>
int main() {
printf("Hello World!\n");
return 0;
}