about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--apps/mu.subx12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/mu.subx b/apps/mu.subx
index 307c65e2..5d4eec20 100644
--- a/apps/mu.subx
+++ b/apps/mu.subx
@@ -7814,7 +7814,7 @@ $translate-mu-length-stmt:emit-output:
     # outputs[0] "/r32"
     8b/-> *(ecx+0xc) 0/r32/eax  # Stmt1-outputs
     8b/-> *eax 0/r32/eax  # Stmt-var-value
-    (get Registers *(eax+0x10) 8 "Registers")  # Var-register => eax
+    (get Registers *(eax+0x10) 0xc "Registers")  # Var-register => eax
     (print-int32-buffered *(ebp+8) *eax)
     (write-buffered *(ebp+8) "/r32\n")
 $translate-mu-length-stmt:end:
@@ -7973,7 +7973,7 @@ $translate-mu-index-stmt-with-array-in-register:emit-output:
     8b/-> *(ebp+0xc) 1/r32/ecx
     8b/-> *(ecx+0xc) 0/r32/eax  # Stmt1-outputs
     8b/-> *eax 0/r32/eax  # Stmt-var-value
-    (get Registers *(eax+0x10) 8 "Registers")  # Var-register => eax
+    (get Registers *(eax+0x10) 0xc "Registers")  # Var-register => eax
     (print-int32-buffered *(ebp+8) *eax)
     (write-buffered *(ebp+8) "/r32\n")
 $translate-mu-index-stmt-with-array-in-register:end:
@@ -8084,7 +8084,7 @@ $translate-mu-index-stmt-with-array-on-stack:emit-output:
     8b/-> *(ebp+0xc) 0/r32/eax
     8b/-> *(eax+0xc) 0/r32/eax  # Stmt1-outputs
     8b/-> *eax 0/r32/eax  # Stmt-var-value
-    (get Registers *(eax+0x10) 8 "Registers")  # Var-register => eax
+    (get Registers *(eax+0x10) 0xc "Registers")  # Var-register => eax
     (print-int32-buffered *(ebp+8) *eax)
     (write-buffered *(ebp+8) "/r32\n")
 $translate-mu-index-stmt-with-array-on-stack:end:
@@ -8129,7 +8129,7 @@ $translate-mu-compute-index-stmt:emit-output:
     # outputs[0] "/r32"
     8b/-> *(ecx+0xc) 0/r32/eax  # Stmt1-outputs
     8b/-> *eax 0/r32/eax  # Stmt-var-value
-    (get Registers *(eax+0x10) 8 "Registers")  # Var-register => eax
+    (get Registers *(eax+0x10) 0xc "Registers")  # Var-register => eax
     (print-int32-buffered *(ebp+8) *eax)
     (write-buffered *(ebp+8) "/r32\n")
 $translate-mu-compute-index-stmt:end:
@@ -8189,7 +8189,7 @@ $translate-mu-get-stmt:emit-output:
     # outputs[0] "/r32"
     8b/-> *(ecx+0xc) 0/r32/eax  # Stmt1-outputs
     8b/-> *eax 0/r32/eax  # Stmt-var-value
-    (get Registers *(eax+0x10) 8 "Registers")  # Var-register => eax
+    (get Registers *(eax+0x10) 0xc "Registers")  # Var-register => eax
     (print-int32-buffered *(ebp+8) *eax)
     (write-buffered *(ebp+8) "/r32\n")
 $translate-mu-get-stmt:end:
@@ -9852,7 +9852,7 @@ emit-subx-r32:  # out: (addr buffered-file), l: arg-location, stmt: (handle stmt
     # var v/eax: (handle var)
     (get-stmt-operand-from-arg-location *(ebp+0x10) *(ebp+0xc))  # => eax
     8b/-> *eax 0/r32/eax  # Stmt-var-value
-    (maybe-get Registers *(eax+0x10) 8)  # Var-register => eax: (addr register-index)
+    (maybe-get Registers *(eax+0x10) 0xc)  # Var-register => eax: (addr register-index)
     (write-buffered *(ebp+8) Space)
     (print-int32-buffered *(ebp+8) *eax)
     (write-buffered *(ebp+8) "/r32")
8'>28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117