Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.syntax unified .arch armv6 .weak bar .section .far, "ax", %progbits .global _start .type _start, %function _start: bl bar bleq bar .thumb .type foo, %function .thumb_func foo: bl bar movs r0, #0 bl bar bx lr