Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12
.option nopic .text .align 1 .globl _start .type _start, @function _start: lui a0,%hi(foo) addi a0,a0,%lo(foo) .skip 0x7f8 foo: ret .size _start, .-_start