mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-21 09:30:55 +00:00
Add newline after read() debug output (#44)
This commit is contained in:
parent
2703e00201
commit
7ac2a88974
@ -74,7 +74,7 @@ namespace MPW
|
||||
int fd = f.cookie;
|
||||
ssize_t size;
|
||||
|
||||
Log(" read(%04x, %08x, %08x)", fd, f.buffer, f.count);
|
||||
Log(" read(%04x, %08x, %08x)\n", fd, f.buffer, f.count);
|
||||
size = OS::Internal::FDEntry::read(fd, memoryPointer(f.buffer), f.count);
|
||||
//Log(" -> %ld\n", size);
|
||||
|
||||
|
@ -505,7 +505,7 @@ namespace ToolBox {
|
||||
*/
|
||||
|
||||
Push<4>(returnPC == 0 ? cpuGetPC() : returnPC);
|
||||
Log("$04x *%s - $%08x", trap, TrapName(trap), address);
|
||||
Log("$04x *%s - $%08x\n", trap, TrapName(trap), address);
|
||||
cpuInitializeFromNewPC(address);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user