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!
9 lines
139 B
C++
9 lines
139 B
C++
#define BYTECODE_READER_IMPLEMENTATION
|
|
#include "reader.hpp"
|
|
|
|
#include <cstdio>
|
|
|
|
int main() {
|
|
printf("Hello World!\n");
|
|
return 0;
|
|
} |