about summary refs log tree commit diff stats
path: root/029tools.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-28 01:10:21 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-28 01:10:21 -0700
commitd619db37a92e744877248601e22bec4a50c9293d (patch)
treed489f74ad4b25bc268603df481764718b656a114 /029tools.cc
parentf78f92c58ae49143c64b1cfec320d0579a07f859 (diff)
downloadmu-d619db37a92e744877248601e22bec4a50c9293d.tar.gz
1864
Diffstat (limited to '029tools.cc')
-rw-r--r--029tools.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/029tools.cc b/029tools.cc
index 56bcc4f1..45d6a20a 100644
--- a/029tools.cc
+++ b/029tools.cc
@@ -203,14 +203,3 @@ case _DUMP_MEMORY: {
   dump_memory();
   break;
 }
-
-:(before "End Primitive Recipe Declarations")
-_DUMP,
-:(before "End Primitive Recipe Numbers")
-Recipe_ordinal["$dump"] = _DUMP;
-:(before "End Primitive Recipe Implementations")
-case _DUMP: {
-  reagent after_canonize = canonize(current_instruction().ingredients.at(0));
-  cerr << current_recipe_name() << ": " << current_instruction().ingredients.at(0).name << ' ' << current_instruction().ingredients.at(0).value << " => " << after_canonize.value << " => " << Memory[after_canonize.value] << '\n';
-  break;
-}