From 6af709cc54d3f14155f34692716f598406d2ce6e Mon Sep 17 00:00:00 2001 From: Dennis Brentjes Date: Sat, 16 Jun 2018 16:27:49 +0200 Subject: Some small reformattings. --- emulate/cpustate.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'emulate/cpustate.cpp') 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; } -- cgit v1.2.3-70-g09d2