about summary refs log tree commit diff stats
path: root/subx/039debug.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-01-11 18:12:05 -0800
committerKartik Agaram <vc@akkartik.com>2019-01-11 18:12:05 -0800
commite92fa89edfd0236e655cea5d69c47aece40385a2 (patch)
tree928357916a2d7c773ca051c430e38bc46b3ad77c /subx/039debug.cc
parentdb8a9ab553535551ce80dcd5ce07cffb85f5cfb7 (diff)
downloadmu-e92fa89edfd0236e655cea5d69c47aece40385a2.tar.gz
4922
Diffstat (limited to 'subx/039debug.cc')
-rw-r--r--subx/039debug.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/subx/039debug.cc b/subx/039debug.cc
index 23123c0c..83ae3f52 100644
--- a/subx/039debug.cc
+++ b/subx/039debug.cc
@@ -1,7 +1,7 @@
-//: Some helpers for debugging.
+//:: Some helpers for debugging.
 
-// Load the 'map' file generated during 'subx --map translate' when running 'subx --map --dump run'.
-// (It'll only affect the trace.)
+//: Load the 'map' file generated during 'subx --map translate' when running 'subx --map --dump run'.
+//: (It'll only affect the trace.)
 
 :(before "End Globals")
 map</*address*/uint32_t, string> Symbol_name;  // used only by 'subx run'
@@ -24,9 +24,9 @@ void load_map(const string& map_filename) {
 if (contains_key(Symbol_name, EIP))
   trace(90, "run") << "== label " << get(Symbol_name, EIP) << end();
 
-// If a label starts with '$watch-', make a note of the effective address
-// computed by the next instruction. Start dumping out its contents to the
-// trace after every subsequent instruction.
+//: If a label starts with '$watch-', make a note of the effective address
+//: computed by the next instruction. Start dumping out its contents to the
+//: trace after every subsequent instruction.
 
 :(after "Run One Instruction")
 dump_watch_points();