* remove "\r" nonsense
[mascara-docs.git] / amd64 / bareMetalOS-0.5.3 / newlib / baremetal / crt0.s
blob2eb82cc6283f6c5f6964d70c8f7e114197390597
1 .global _start
2 .extern main
3 _start:
5 ## here you might want to get the argc/argv pairs somehow and then push
6 ## them onto the stack...
8 # call the user's function
9 call main
11 # return to the OS
12 ret