diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-12-29 13:21:20 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-12-29 13:21:20 -0800 |
commit | d762282438f603d47804be04cebf77d6137c2728 (patch) | |
tree | 38844ee817fc9499269d16edceb51152b65ea954 | |
parent | 431627b242d7f5f2c6b6b13876a255526383f831 (diff) | |
download | mu-d762282438f603d47804be04cebf77d6137c2728.tar.gz |
4887
-rw-r--r-- | subx/066allocate.subx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subx/066allocate.subx b/subx/066allocate.subx index 9194d9b8..92da3815 100644 --- a/subx/066allocate.subx +++ b/subx/066allocate.subx @@ -88,7 +88,7 @@ test-allocate-success: 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP # check-ints-equal(EAX, 11, msg) # . . push args - 68/push "F - test-allocate-success: returns current pointer of address descriptor"/imm32 + 68/push "F - test-allocate-success: returns current pointer of allocation descriptor"/imm32 68/push 0xb/imm32 50/push-EAX # . . call @@ -97,7 +97,7 @@ test-allocate-success: 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 0xc/imm32 # add to ESP # check-ints-equal(ad->curr, 14, msg) # . . push args - 68/push "F - test-allocate-success: updates address descriptor"/imm32 + 68/push "F - test-allocate-success: updates allocation descriptor"/imm32 68/push 0xe/imm32 ff 6/subop/push 0/mod/indirect 1/rm32/ECX . . . . . . # push *ECX # . . call @@ -137,7 +137,7 @@ test-allocate-failure: # no change to ad->curr # . check-ints-equal(ad->curr, 11) # . . push args - 68/push "F - test-allocate-failure: updates address descriptor"/imm32 + 68/push "F - test-allocate-failure: updates allocation descriptor"/imm32 68/push 0xb/imm32 ff 6/subop/push 0/mod/indirect 1/rm32/ECX . . . . . . # push *ECX # . . call |