about summary refs log tree commit diff stats
path: root/039debug.cc
diff options
context:
space:
mode:
Diffstat (limited to '039debug.cc')
-rw-r--r--039debug.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/039debug.cc b/039debug.cc
index e3dd8073..bb306b06 100644
--- a/039debug.cc
+++ b/039debug.cc
@@ -1,12 +1,12 @@
 //:: Some helpers for debugging.
 
-//: Load the 'map' file generated during 'subx --debug translate' when running
-//: 'subx --debug --trace run'.
+//: Load the 'map' file generated during 'bootstrap --debug translate' when running
+//: 'bootstrap --trace run'.
 //: (It'll only affect the trace.)
 
 :(before "End Globals")
-map</*address*/uint32_t, string> Symbol_name;  // used only by 'subx run'
-map</*address*/uint32_t, string> Source_line;  // used only by 'subx run'
+map</*address*/uint32_t, string> Symbol_name;  // used only by 'bootstrap run'
+map</*address*/uint32_t, string> Source_line;  // used only by 'bootstrap run'
 :(before "End --debug Settings")
 load_labels();
 load_source_lines();