#include "apple.h" #include "video/interface.h" #include #include #include "cpu/6502.h" int main() { AppleOn(); DisplayInit(); FILE *Log = fopen("log/log.raw", "w+"); int Time = 0; while(1) { // Computing CallInstructionTable(); // Logging fprintf(Log, "%04x : %04x : %02x : %02x : %02x : %c%c_%c%c%c%c%c : %02x\n", Time, PC-idata.length, acc, X, Y, getFlag(flag_N) ? 'N':'.' , getFlag(flag_V) ? 'V':'.' , getFlag(flag_B) ? 'B':'.' , getFlag(flag_D) ? 'D':'.' , getFlag(flag_I) ? 'I':'.' , getFlag(flag_Z) ? 'Z':'.' , getFlag(flag_C) ? 'C':'.' , S); fflush(Log); // Display information PrintInfo(); // Logging Time++; } DisplayClose(); return 0; }