diff options
Diffstat (limited to 'log/log-readable.cpp')
-rw-r--r-- | log/log-readable.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/log/log-readable.cpp b/log/log-readable.cpp index e110cdc..559d7e2 100644 --- a/log/log-readable.cpp +++ b/log/log-readable.cpp @@ -28,7 +28,7 @@ int main() y.erase(0,1); Convert[x] = y; - cout << x << " : " << Convert[x] << endl; + //cout << x << " : " << Convert[x] << endl; } RomLine.close(); @@ -42,7 +42,9 @@ int main() { string pc; string t; + #define GobbleDelimiter Log >> t; Output << " : " + // Time Counter Log >> t; Output << t; GobbleDelimiter; // Program counter @@ -53,14 +55,13 @@ int main() Log >> t; Output << t; GobbleDelimiter; // Y Log >> t; Output << t; GobbleDelimiter; - // Flags for( ) + // Flags for (int i = 0; i < 8; i++) { char c; Log >> c; Output << c; } GobbleDelimiter; - //Log >> t; Output << t; GobbleDelimiter; // Stack Pointer Log >> t; Output << t; // If a mapping exists, print out the program counter and line code. @@ -69,7 +70,8 @@ int main() Output << " " << s; } // Otherwise, don't do anything. - catch (out_of_range) { } + catch (out_of_range) { + } // Newline Output << endl; } |