diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-03-27 11:02:03 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-03-27 11:02:03 -0700 |
commit | 63e48e9034f4067437c385c7f64df2ff0508a80b (patch) | |
tree | 33177ace58c2da3de6267cbc7675ef2c2161e7e0 /subx/apps | |
parent | 9fa0d826174dd13f1c53a75f83fdb2341bb1c37e (diff) | |
download | mu-63e48e9034f4067437c385c7f64df2ff0508a80b.tar.gz |
5026
Diffstat (limited to 'subx/apps')
-rw-r--r-- | subx/apps/pack.subx | 8 |
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 |