replaced missing file

This commit is contained in:
Perry Kivolowitz 2022-08-24 20:51:14 -05:00
parent 05e9aa254a
commit 62b74258d0

16
section_2/float/t.s Normal file
View file

@ -0,0 +1,16 @@
.text
.global main
.align 2
main: str x30, [sp, -16]!
ldr s0, =0x3fc00000
fcvt d0, s0
ldr x0, =fmt
bl printf
ldr x30, [sp], 16
mov w0, wzr
ret
.data
fmt: .asciz "%f\n"
.end