Rev 2787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2787 | Rev 3424 | ||
---|---|---|---|
Line 29... | Line 29... | ||
29 | .section .init, "ax" |
29 | .section .init, "ax" |
30 | 30 | ||
31 | .org 0 |
31 | .org 0 |
32 | 32 | ||
33 | .global __entry |
33 | .global __entry |
34 | .global __entry_driver |
- | |
35 | 34 | ||
36 | ## User-space task entry point |
35 | ## User-space task entry point |
37 | # |
36 | # |
38 | # |
37 | # |
39 | __entry: |
38 | __entry: |
40 | bl __main |
39 | bl __main |
41 | bl __io_init |
- | |
42 | bl main |
40 | bl main |
43 | bl __exit |
41 | bl __exit |
44 | - | ||
45 | __entry_driver: |
- | |
46 | bl __main |
- | |
47 | bl main |
- | |
48 | bl __exit |
- | |
49 | - |