crtn.s 196 B

1234567891011121314151617
  1. ; ToAruOS User CRT0
  2. BITS 32
  3. section .init
  4. ; .init goes here
  5. pop ebp
  6. ret
  7. section .fini
  8. ; .fini goes here
  9. pop ebp
  10. ret
  11. ; vim:syntax=nasm
  12. ; vim:noexpandtab
  13. ; vim:tabstop=4
  14. ; vim:shiftwidth=4