2005-05-05 03:11:24 +00:00
|
|
|
.text
|
|
|
|
.weak _start
|
2006-05-17 11:30:24 +00:00
|
|
|
.weak __start
|
2005-05-05 03:11:24 +00:00
|
|
|
.type _start, "function"
|
2006-05-17 11:30:24 +00:00
|
|
|
.type __start, "function"
|
2005-05-05 03:11:24 +00:00
|
|
|
_start:
|
2006-05-17 11:30:24 +00:00
|
|
|
__start:
|
2005-05-05 03:11:24 +00:00
|
|
|
.byte 0
|
|
|
|
.byte 0
|
|
|
|
.size _start, 2
|
2006-05-17 11:30:24 +00:00
|
|
|
.size __start, 2
|
2005-07-27 00:08:40 +00:00
|
|
|
|
|
|
|
.weak foo
|
|
|
|
.type foo, "function"
|
|
|
|
foo:
|
|
|
|
.byte 0
|
|
|
|
.byte 0
|
|
|
|
.size foo, 2
|