blob: 82e263de0bc9ad8a78f9900a7aef1e9886f4c821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// log-readable.cpp
// A simple utility which makes the runtime log files into a more readable
// format by adding commented code lines from wozmon.
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <map>
using namespace std;
int main()
{
ifstream RomLine ("rom-hex-positions");
ifstream Code ("rom-code-lines");
map<string, string> Convert;
string x;
string y;
for (int i = 0; i < 128; i++)
{
getline (RomLine, x);
getline (Code, y, (char)0x0d);
if (i != 0)
y.erase(0,1);
Convert[x] = y;
cout << x << " : " << Convert[x] << endl;
}
RomLine.close();
Code.close();
ifstream Log("log.raw");
ofstream Output("log.new");
Output << "Time PC Label Instruction Comment\n" << endl;
while(!Log.eof())
{
string t;
// Expects time counter, and prints.
Log >> t;
Output << t;
// Expecting a delimiter surrounded with space.
Log >> t;
Output << " : ";
// Expecting program counter
Log >> t;
Output << t;
// If a mapping exists, print out the program counter and line code.
try {
string s = Convert[t];
Output << t << " : ";
Output << s;
}
// Otherwise, don't do anything.
catch (out_of_range) { }
// Newline
Output << endl;
}
Log.close();
Output.close();
return 0;
}
|