head.S 173 B

1234567891011
  1. // The linker ensures that section .init is first
  2. .section ".init","ax"
  3. .org 0
  4. .globl _reset
  5. _reset:
  6. j _start
  7. .org 0x10
  8. .globl _irq
  9. _irq:
  10. j die // Nothing for now