diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-07-02 00:16:23 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-07-02 00:16:23 -0700 |
commit | 9d5ba2dfbff6226dae7e0663af5b245955d7faef (patch) | |
tree | 65c9920689241af45a8a4dd1d2ab25576a18adcd | |
parent | dc8484384ec10249632a0b8587ae225c88afe962 (diff) | |
download | mu-9d5ba2dfbff6226dae7e0663af5b245955d7faef.tar.gz |
.
-rwxr-xr-x | subx/apps/survey | bin | 30195 -> 30195 bytes | |||
-rw-r--r-- | subx/apps/survey.subx | 10 |
2 files changed, 5 insertions, 5 deletions
diff --git a/subx/apps/survey b/subx/apps/survey index fc167937..9e629992 100755 --- a/subx/apps/survey +++ b/subx/apps/survey Binary files differdiff --git a/subx/apps/survey.subx b/subx/apps/survey.subx index f60e186a..736ae20b 100644 --- a/subx/apps/survey.subx +++ b/subx/apps/survey.subx @@ -771,19 +771,19 @@ test-compute-addresses: e8/call stream-add4/disp32 # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 0x14/imm32 # add to ESP - # . stream-add4(segments, "b", 0x500, 0, 1) + # . stream-add4(segments, "b", 0x2018, 5, 1) 68/push 1/imm32/segment-size - 68/push 0/imm32/file-offset - 68/push 0x500/imm32/start-address + 68/push 5/imm32/file-offset + 68/push 0x2018/imm32/start-address 68/push "b"/imm32/segment-name 51/push-ECX # . . call e8/call stream-add4/disp32 # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 0x14/imm32 # add to ESP - # . stream-add4(segments, "c", 0x5444, 0, 12) + # . stream-add4(segments, "c", 0x5444, 6, 12) 68/push 0xc/imm32/segment-size - 68/push 0/imm32/file-offset + 68/push 6/imm32/file-offset 68/push 0x5444/imm32/start-address 68/push "c"/imm32/segment-name 51/push-ECX |