Minor changes: 1.0.1

This commit is contained in:
patrick_pluto 2024-08-22 19:29:50 +02:00
parent 53c8369b8f
commit 2adb9e2070

View file

@ -18,7 +18,7 @@ using namespace std;
int main ( int argc, char *argv[] ) {
const char *filename = argv[1];
const int rom_size = 64;
const int rom_size = 256;
ifstream file(filename); // Open the file
string asmCode((istreambuf_iterator<char>(file)), istreambuf_iterator<char>());