mirror of
https://github.com/Rushilwiz/comp211.git
synced 2025-04-04 03:10:16 -04:00
35 lines
572 B
ArmAsm
35 lines
572 B
ArmAsm
.file "hello.c"
|
|
.text
|
|
.section .rodata
|
|
.LC0:
|
|
.string "Hello, world."
|
|
.LC1:
|
|
.string "Welcome to C!"
|
|
.text
|
|
.globl main
|
|
.type main, @function
|
|
main:
|
|
.LFB6:
|
|
.cfi_startproc
|
|
pushq %rbp
|
|
.cfi_def_cfa_offset 16
|
|
.cfi_offset 6, -16
|
|
movq %rsp, %rbp
|
|
.cfi_def_cfa_register 6
|
|
leaq .LC0(%rip), %rax
|
|
movq %rax, %rdi
|
|
call puts@PLT
|
|
leaq .LC1(%rip), %rax
|
|
movq %rax, %rdi
|
|
movl $0, %eax
|
|
call printf@PLT
|
|
movl $0, %eax
|
|
popq %rbp
|
|
.cfi_def_cfa 7, 8
|
|
ret
|
|
.cfi_endproc
|
|
.LFE6:
|
|
.size main, .-main
|
|
.ident "GCC: (Debian 12.2.0-14) 12.2.0"
|
|
.section .note.GNU-stack,"",@progbits
|