diff options
-rw-r--r-- | subx/050_write.subx | 2 | ||||
-rw-r--r-- | subx/051test.subx | 2 | ||||
-rw-r--r-- | subx/052kernel_string_equal.subx | 2 | ||||
-rw-r--r-- | subx/055trace.subx | 6 |
4 files changed, 6 insertions, 6 deletions
diff --git a/subx/050_write.subx b/subx/050_write.subx index 803c2f14..a058a529 100644 --- a/subx/050_write.subx +++ b/subx/050_write.subx @@ -38,7 +38,7 @@ _write: # fd : int, s : (address array byte) -> <void> 5a/pop-to-EDX 59/pop-to-ECX 58/pop-to-EAX - # end + # epilog 89/copy 3/mod/direct 4/rm32/ESP . . . 5/r32/EBP . . # copy EBP to ESP 5d/pop-to-EBP c3/return diff --git a/subx/051test.subx b/subx/051test.subx index 2556b4ee..b2adf105 100644 --- a/subx/051test.subx +++ b/subx/051test.subx @@ -68,7 +68,7 @@ $check-ints-equal:end: # restore registers 5b/pop-to-EBX 59/pop-to-ECX - # end + # epilog 89/copy 3/mod/direct 4/rm32/ESP . . . 5/r32/EBP . . # copy EBP to ESP 5d/pop-to-EBP c3/return diff --git a/subx/052kernel_string_equal.subx b/subx/052kernel_string_equal.subx index 85aba0c0..b22ad48f 100644 --- a/subx/052kernel_string_equal.subx +++ b/subx/052kernel_string_equal.subx @@ -105,7 +105,7 @@ $kernel-string-equal:end: 5b/pop-to-EBX 5a/pop-to-EDX 59/pop-to-ECX - # end + # epilog 89/copy 3/mod/direct 4/rm32/ESP . . . 5/r32/EBP . . # copy EBP to ESP 5d/pop-to-EBP c3/return diff --git a/subx/055trace.subx b/subx/055trace.subx index 00f09ed5..b9ab5e67 100644 --- a/subx/055trace.subx +++ b/subx/055trace.subx @@ -240,7 +240,7 @@ test-trace-single: e8/call check-ints-equal/disp32 # discard args 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 0xc/imm32 # add to ESP - # done + # end c3/return test-trace-appends: @@ -278,7 +278,7 @@ test-trace-appends: e8/call check-ints-equal/disp32 # discard args 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 0xc/imm32 # add to ESP - # done + # end c3/return test-trace-empty-line: @@ -308,7 +308,7 @@ test-trace-empty-line: e8/call check-ints-equal/disp32 # discard args 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 0xc/imm32 # add to ESP - # done + # end c3/return # vim:nowrap:textwidth=0 |