about summary refs log tree commit diff stats
path: root/010---vm.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-02 01:41:55 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-02 02:01:41 -0800
commit9e5e87ca3776efa5f0d772ed8cf348bf6ee4d08e (patch)
tree5134d5ff1629cb5262e5feda38831456a2d1467d /010---vm.cc
parentdf8498fb8294cb07d02076cf3881617b5af07974 (diff)
downloadmu-9e5e87ca3776efa5f0d772ed8cf348bf6ee4d08e.tar.gz
5865
Give the bootstrap C++ program a less salient name.
Diffstat (limited to '010---vm.cc')
-rw-r--r--010---vm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/010---vm.cc b/010---vm.cc
index d67667f7..a0724760 100644
--- a/010---vm.cc
+++ b/010---vm.cc
@@ -362,7 +362,7 @@ if (key == "opcodes") {
     cerr << "  f3 " << p->first << ": " << p->second << '\n';
   for (map<string, string>::iterator p = Name_f3_0f.begin();  p != Name_f3_0f.end();  ++p)
     cerr << "  f3 0f " << p->first << ": " << p->second << '\n';
-  cerr << "Run `subx help instructions` for details on words like 'r32' and 'disp8'.\n"
+  cerr << "Run `bootstrap help instructions` for details on words like 'r32' and 'disp8'.\n"
           "For complete details on these instructions, consult the IA-32 manual (volume 2).\n"
           "There's various versions of it online, such as https://c9x.me/x86.\n"
           "The mnemonics in brackets will help you locate each instruction.\n";