about summary refs log tree commit diff stats
path: root/subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-08-29 23:54:01 -0700
committerKartik Agaram <vc@akkartik.com>2018-08-29 23:54:01 -0700
commit51e3e6cec3aea2589513e946f187d9c4bc8eadb3 (patch)
tree2c938074d5e21615c37a2b27de40061d9341a96b /subx
parentd2c239e1fa07f8d72f4ec5e27e56abbb4395306e (diff)
downloadmu-51e3e6cec3aea2589513e946f187d9c4bc8eadb3.tar.gz
4526
New levels should be added at the top of list of transforms rather than
bottom. See layer 29.
Diffstat (limited to 'subx')
-rw-r--r--subx/030---operands.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/030---operands.cc b/subx/030---operands.cc
index 3b3b286c..aa3f2ded 100644
--- a/subx/030---operands.cc
+++ b/subx/030---operands.cc
@@ -133,7 +133,7 @@ void init_operand_type_help() {
 
 //:: transform packing operands into bytes in the right order
 
-:(before "End Transforms")
+:(after "Begin Transforms")
 // Begin Level-2 Transforms
 Transform.push_back(pack_operands);
 // End Level-2 Transforms