about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--subx/apps/pack.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/subx/apps/pack.subx b/subx/apps/pack.subx
index 0104eb4e..5d0f7145 100644
--- a/subx/apps/pack.subx
+++ b/subx/apps/pack.subx
@@ -1029,7 +1029,7 @@ test-convert-data-multiple-bytes:
     # . . discard args
     81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               4/imm32           # add to ESP
     # initialize input
-    # . write(_test-input-stream, "30 abcd/o 42e1/imm32")
+    # . write(_test-input-stream, "1 2")
     # . . push args
     68/push  "1 2"/imm32
     68/push  _test-input-stream/imm32
@@ -1053,7 +1053,7 @@ test-convert-data-multiple-bytes:
     e8/call  flush/disp32
     # . . discard args
     81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               4/imm32           # add to ESP
-    # . check-stream-equal(_test-output-stream, "30 abcd/o 42 e1 ", msg)
+    # . check-stream-equal(_test-output-stream, "01 02 ", msg)
     # . . push args
     68/push  "F - test-convert-data-multiple-bytes"/imm32
     68/push  "01 02 "/imm32
@@ -1097,7 +1097,7 @@ test-convert-data-byte-then-name:
     # . . discard args
     81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               4/imm32           # add to ESP
     # initialize input
-    # . write(_test-input-stream, "30 abcd/o 42e1/imm32")
+    # . write(_test-input-stream, "30 abcd/o")
     # . . push args
     68/push  "30 abcd/o"/imm32
     68/push  _test-input-stream/imm32
@@ -1121,7 +1121,7 @@ test-convert-data-byte-then-name:
     e8/call  flush/disp32
     # . . discard args
     81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               4/imm32           # add to ESP
-    # . check-stream-equal(_test-output-stream, "30 abcd/o 42 e1 ", msg)
+    # . check-stream-equal(_test-output-stream, "30 abcd/o ", msg)
     # . . push args
     68/push  "F - test-convert-data-byte-then-name"/imm32
     68/push  "30 abcd/o "/imm32
fe14bf38e3f6d5bc21bc85c1c230432bb4'>f331dffe ^
a99d5019 ^
16246965 ^
0128bee7 ^
7bf5f967 ^
02cf8f61 ^
eaaeed3d ^
7b6fab79 ^
0c0b9489 ^
0128bee7 ^
d46a05a8 ^
c6953a55 ^
25d023b3 ^
3de15ddd ^
d528952a ^
3de15ddd ^
1c1b6c31 ^
16246965 ^

20f94973 ^
a1d7ed6e ^
0c0b9489 ^
1c1b6c31 ^
9506fb8e ^
6f43de0a ^
a1d7ed6e ^
20f94973 ^
227f75db ^
7a3a429c ^
b76bb9a1 ^
227f75db ^
fa704bab ^
4f1a6e67 ^
ca202490 ^
a99d5019 ^


70f876d5 ^



73811372 ^
cb1ed288 ^

bd0ede8d ^

d46a05a8 ^
a1d7ed6e ^

a1d7ed6e ^
0128bee7 ^


a4570538 ^
f2d8598d ^
0128bee7 ^
f2d8598d ^
0a1bc759 ^
0c0b9489 ^



9506fb8e ^
0128bee7 ^
a4570538 ^
20f94973 ^
0c0b9489 ^
7b6fab79 ^
0c0b9489 ^

c2238598 ^




a9f69385 ^

42ae9500 ^














16246965 ^



be7c282c ^




1d27a413 ^
a0ca73c8 ^
a0ca73c8 ^

d92c4af3 ^



1d27a413 ^










a0ca73c8 ^
1d27a413 ^
a0ca73c8 ^

1d27a413 ^





8e0d73b5 ^
a4570538 ^










a1d7ed6e ^
ad1a4204 ^

b4b0eb24 ^
ad1a4204 ^



b4b0eb24 ^
a1d7ed6e ^
f8e96a97 ^

871c502d ^

361781cd ^


361781cd ^



f2d8598d ^

361781cd ^



0cfc59d6 ^
361781cd ^
0cfc59d6 ^
361781cd ^
0cfc59d6 ^
361781cd ^
0cfc59d6 ^
7626fd1d ^
0cfc59d6 ^



fc5d8640 ^

0cfc59d6 ^
3937f010 ^


0a16f0da ^
3937f010 ^
f2d8598d ^
d008817c ^

1ef0ade5 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217