about summary refs log tree commit diff stats
path: root/subx/039debug.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-04-27 21:33:26 -0700
committerKartik Agaram <vc@akkartik.com>2019-04-27 21:40:12 -0700
commitf539a27245d31f4ba3c90389dce1f5f4d372bd27 (patch)
tree63ad429ff673c9c0febef165b0dc0e93c8adaee8 /subx/039debug.cc
parent62a71b89a88800c1966980db1b0ca01ef728c78e (diff)
downloadmu-f539a27245d31f4ba3c90389dce1f5f4d372bd27.tar.gz
5131
Rename '--map' to '--debug'.
Diffstat (limited to 'subx/039debug.cc')
-rw-r--r--subx/039debug.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/subx/039debug.cc b/subx/039debug.cc
index fc0b622b..b631336a 100644
--- a/subx/039debug.cc
+++ b/subx/039debug.cc
@@ -1,12 +1,13 @@
 //:: Some helpers for debugging.
 
-//: Load the 'map' file generated during 'subx --map translate' when running 'subx --map --trace run'.
+//: Load the 'map' file generated during 'subx --debug translate' when running
+//: 'subx --debug --trace run'.
 //: (It'll only affect the trace.)
 
 :(before "End Globals")
 map</*address*/uint32_t, string> Symbol_name;  // used only by 'subx run'
-:(before "End --map Settings")
-load_map("map");
+:(before "End --debug Settings")
+load_map("labels");
 :(code)
 void load_map(const string& map_filename) {
   ifstream fin(map_filename.c_str());