.section .data input_number: .asciz "Please enter a number: " input_spec: .asciz "%d" print_num: .asciz " %d \n" error: .asciz "Please input a positive number \n" .section .text .global main main: # add code and other labels here # branch to this label on program completion exit: mov x0, 0 mov x8, 93 svc 0 ret