diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-01-04 21:59:27 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-01-04 21:59:27 -0800 |
commit | aa96ac23a626310242684d0ab510d0df358af179 (patch) | |
tree | a98692599f41b6b74c45b3a6502822330710685c /subx | |
parent | bc20cc3d4561152e1cef98cccc23488e02979c34 (diff) | |
download | mu-aa96ac23a626310242684d0ab510d0df358af179.tar.gz |
4907
Diffstat (limited to 'subx')
-rw-r--r-- | subx/067new-stream.subx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/067new-stream.subx b/subx/067new-stream.subx index 5b9fc6c6..2020229d 100644 --- a/subx/067new-stream.subx +++ b/subx/067new-stream.subx @@ -77,8 +77,8 @@ test-new-stream: # . prolog 55/push-EBP 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . . # copy ESP to EBP - # var ad/ECX : (address allocation-descriptor) = allocate-region(512) - # . EAX = allocate-region(512) + # var ad/ECX : (address allocation-descriptor) = allocate-region(Heap, 512) + # . EAX = allocate-region(Heap, 512) # . . push args 68/push 0x200/imm32 68/push Heap/imm32 |