diff options
Diffstat (limited to 'emulate/cpustate.cpp')
| -rw-r--r-- | emulate/cpustate.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/emulate/cpustate.cpp b/emulate/cpustate.cpp index 76611b5..19f126a 100644 --- a/emulate/cpustate.cpp +++ b/emulate/cpustate.cpp @@ -23,7 +23,7 @@ std::ostream&operator<<(std::ostream& os, CpuState& cpu) { << PRINT_REGISTER( SS, ss) << PRINT_REGISTER( FS, fs) << PRINT_REGISTER( GS, gs) - << "cf \tpf \taf \tzf \tsf \ttf \tintf \tdf \tof \tnt \trf \tvm \tac \tvif \tvip \tid" << std::endl + << "cf \tpf \taf \tzf \tsf \ttf \tintf \tdf" << std::endl << cpu.cf() << "\t" << cpu.pf() << "\t" << cpu.af() << "\t" @@ -31,7 +31,9 @@ std::ostream&operator<<(std::ostream& os, CpuState& cpu) { << cpu.sf() << "\t" << cpu.tf() << "\t" << cpu.intf() << "\t" - << cpu.df() << "\t" + << cpu.df() + << std::endl << std::endl + << "of \tnt \trf \tvm \tac \tvif \tvip \tid" << std::endl << cpu.of() << "\t" << cpu.nt() << "\t" << cpu.rf() << "\t" @@ -39,7 +41,7 @@ std::ostream&operator<<(std::ostream& os, CpuState& cpu) { << cpu.ac() << "\t" << cpu.vif() << "\t" << cpu.vip() << "\t" - << cpu.id() << "\t" + << cpu.id() << std::endl; return os; } |
