crti.s 230 B

12345678910111213141516171819
  1. ; ToAruOS User CRT0
  2. BITS 32
  3. section .init
  4. global _init
  5. _init:
  6. push ebp
  7. ; .init goes here
  8. section .fini
  9. global _fini
  10. _fini:
  11. push ebp
  12. ; .fini goes here
  13. ; vim:syntax=nasm
  14. ; vim:noexpandtab
  15. ; vim:tabstop=4
  16. ; vim:shiftwidth=4