Adding screenshot

This commit is contained in:
Tony Di Nucci 2019-04-26 17:29:33 +01:00
parent 78edfb3253
commit e7a5056d97
2 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@ -12,7 +12,7 @@ using namespace std;
using namespace emu_6502;
int main() {
string binary = "/home/tony/CLionProjects/6502-emulator/sample/a.o65";
string binary = "sample/a.o65";
//string binary = "/home/tony/Downloads/6502_functional_test.bin";
ifstream in(binary, ios::binary);
if (in.fail())
@ -27,4 +27,4 @@ int main() {
machine->execute();
return 0;
}
}