• How to compile hello word code with aarch64 gcc

    Assembly code:

        .syntax unified
    
        @ --------------------------------
    .global main
    main:
        @ Stack the return address (lr) in addition to a dummy register (ip) to
        @ keep the stack 8-byte aligned.
        push    {ip, lr}
    
        @ Load the…