repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* remove "\r" nonsense
[mascara-docs.git]
/
amd64
/
bareMetalOS-0.5.3
/
newlib
/
baremetal
/
crt0.s
blob
2eb82cc6283f6c5f6964d70c8f7e114197390597
1
.global _start
2
.extern main
3
_start
:
4
5
## here you might want to get the argc/argv pairs somehow and then push
6
## them onto the stack...
7
8
# call the user's function
9
call main
10
11
# return to the OS
12
ret