removed debug code

This commit is contained in:
folkert van heusden 2022-06-11 08:47:31 +02:00
parent 2d7f202530
commit e93220c536

View file

@ -158,11 +158,6 @@ uint16_t loadTape(bus *const b, const char *const file)
fclose(fh);
fh = fopen("test.dat", "wb");
for(int i=0; i<end; i++)
fputc(b -> readByte(i), fh);
fclose(fh);
return start;
}