blob: 2072b53960a940c1760e99ef8021a0e6df5e5eb0 [file]
.global _start
.global bar
# We will place the section .text at 0x1000.
.text
_start:
call bar
;;
ret
;;