diff options
Diffstat (limited to 'aarch64/mariokartwii_ch07.S')
| -rw-r--r-- | aarch64/mariokartwii_ch07.S | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/aarch64/mariokartwii_ch07.S b/aarch64/mariokartwii_ch07.S index ce3a3f5..53ce2a2 100644 --- a/aarch64/mariokartwii_ch07.S +++ b/aarch64/mariokartwii_ch07.S @@ -4,10 +4,6 @@ .global _main _main: - // Save stack frame - stp x29, x30, [sp, #-16]! - mov x29, sp - // Add mov x0, #1 mov x1, #2 @@ -32,10 +28,3 @@ _main: neg x8, x7 brk #0 // (lldb) register read - - // Restore stack frame - ldp x29, x30, [sp], #16 - - // Return 0 - mov x0, #0 - ret |