diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-07 18:28:47 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-07 18:28:47 +1100 |
commit | dc7e55d2798c1530fc301b232ce01d032fb9935f (patch) | |
tree | 17fe9d1b9937e4c48e7382dd6f1ece37df1de575 /log | |
parent | f8df4908fe6986e691ea96b4b07ffbff349ccce0 (diff) |
FIXED THAT BUG.
Diffstat (limited to 'log')
-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; } |