Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1.  
  2.  
  3. .global __start
  4. .global ___main
  5. .global _DllMainCRTStartup
  6.  
  7.  
  8. .section .init
  9.  
  10. .def    __start;        .scl    2;      .type   32;     .endef
  11. .def    _DllMainCRTStartup;     .scl    2;      .type   32;     .endef
  12.  
  13. .align 4
  14. __start:
  15. _DllMainCRTStartup:
  16.  
  17.            call __pei386_runtime_relocator     
  18.            jmp  _main
  19.  
  20. .align 4
  21. ___main:
  22.            ret
  23.  
  24.  
  25.