diff --git a/src/cpu.cpp b/src/cpu.cpp index e3981b4..5888b46 100644 --- a/src/cpu.cpp +++ b/src/cpu.cpp @@ -7885,5 +7885,5 @@ void CPU::updateTimers(int cycles) void CPU::printStack() { printf("Printing Stack...."); for(Word i = reg_SP.dat ; i <= 0xCFFF ; i++) - printf("Address at stack_pointer %hu is %hu ", i, (*mMap)[i]); + printf("Address at stack_pointer %hu is %hu \n", i, (*mMap)[i]); } \ No newline at end of file diff --git a/src/gameBoy.cpp b/src/gameBoy.cpp index 07d965d..68759ef 100644 --- a/src/gameBoy.cpp +++ b/src/gameBoy.cpp @@ -189,7 +189,7 @@ void GBE::debug_int() shouldAdv = true; break; case SDLK_i: - printf("Info Mode:- "); + printf("Info Mode:- \n"); infoMode = true; shouldAdv = true; // Press r to print all registers