summaryrefslogtreecommitdiff
path: root/emulate/cpustate.cpp
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2018-06-16 16:27:49 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2018-06-16 16:27:49 +0200
commit6af709cc54d3f14155f34692716f598406d2ce6e (patch)
tree85179e623d61a65a7b464d0f16030da931f2f079 /emulate/cpustate.cpp
parent95bc5cd73abd425045889638ccd7dc756419ac15 (diff)
downloadopenwar-6af709cc54d3f14155f34692716f598406d2ce6e.tar.gz
openwar-6af709cc54d3f14155f34692716f598406d2ce6e.tar.bz2
openwar-6af709cc54d3f14155f34692716f598406d2ce6e.zip
Some small reformattings.
Diffstat (limited to 'emulate/cpustate.cpp')
-rw-r--r--emulate/cpustate.cpp8
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;
}