diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-04-16 21:05:24 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-04-16 21:05:24 -0700 |
commit | 1019ac230416155d680276e0ded8da63da6681cf (patch) | |
tree | 53ffb42099a9aad3b03fcbdd6f93adfe7a66d4b5 | |
parent | d3f21c0074522a93a0d0d59a413099c54505f87f (diff) | |
download | mu-1019ac230416155d680276e0ded8da63da6681cf.tar.gz |
5098
-rw-r--r-- | subx/apps/pack.subx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/subx/apps/pack.subx b/subx/apps/pack.subx index 40f80ab9..cc9a9135 100644 --- a/subx/apps/pack.subx +++ b/subx/apps/pack.subx @@ -1926,7 +1926,7 @@ $convert-instruction:pass-through: $convert-instruction:really-convert: # emit-opcodes(line, out) # . . push args - ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+8) + ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+12) ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) # . . call e8/call emit-opcodes/disp32 @@ -1934,7 +1934,7 @@ $convert-instruction:really-convert: 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP # emit-modrm(line, out) # . . push args - ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+8) + ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+12) ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) # . . call e8/call emit-modrm/disp32 @@ -1942,7 +1942,7 @@ $convert-instruction:really-convert: 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP # emit-sib(line, out) # . . push args - ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+8) + ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+12) ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) # . . call e8/call emit-sib/disp32 @@ -1950,7 +1950,7 @@ $convert-instruction:really-convert: 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP # emit-disp(line, out) # . . push args - ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+8) + ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+12) ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) # . . call e8/call emit-disp/disp32 @@ -1958,7 +1958,7 @@ $convert-instruction:really-convert: 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP # emit-imm(line, out) # . . push args - ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+8) + ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+12) ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) # . . call e8/call emit-imm/disp32 @@ -1966,7 +1966,7 @@ $convert-instruction:really-convert: 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP # emit-line-in-comment(line, out) # . . push args - ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+8) + ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+12) ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) # . . call e8/call emit-line-in-comment/disp32 |