blob: 3d48c6c02fbe7524aeee4d24d78216a775c15366 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.include "common.inc"
.include "arch.inc"
comment "Second file in assembly source debugging testcase."
.global foo2
foo2:
enter
comment "Call someplace else."
call foo3
comment "All done, return."
leave
|