Subversion Repositories HelenOS-historic

Rev

Rev 1113 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1113 Rev 1367
Line 29... Line 29...
29
.section .init, "ax"
29
.section .init, "ax"
30
 
30
 
31
.org 0
31
.org 0
32
 
32
 
33
.globl __entry
33
.globl __entry
-
 
34
.globl __entry_driver
34
 
35
 
35
## User-space task entry point
36
## User-space task entry point
36
#
37
#
37
#
38
#
38
__entry:
39
__entry:
39
	call __main
40
	call __main
-
 
41
	call __io_init
-
 
42
	call main
-
 
43
	call __exit
-
 
44
 
-
 
45
__entry_driver:
-
 
46
	call __main
40
	call main
47
	call main
41
	call __exit
48
	call __exit
42
	
-
 
43
.end __entry
-