Subversion Repositories HelenOS

Rev

Rev 2128 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2128 Rev 2465
Line 1... Line 1...
1
#
1
#
2
# Copyright (c) 2006 Jakub Jermar
2
# Copyright (c) 2007 Michal Kebrt, Pavel Jancik
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
Line 26... Line 26...
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
.section .init, "ax"
29
.section .init, "ax"
30
 
30
 
-
 
31
.org 0
-
 
32
 
31
.global __entry
33
.global __entry
32
.global __entry_driver
34
.global __entry_driver
33
 
35
 
34
## User-space task entry point
36
## User-space task entry point
35
#
37
#
36
#
38
#
37
__entry:
39
__entry:
-
 
40
	bl __main
-
 
41
	bl __io_init
-
 
42
	bl main
-
 
43
	bl __exit
-
 
44
 
-
 
45
__entry_driver:
-
 
46
	bl __main
-
 
47
	bl main
-
 
48
	bl __exit
38
 
49
 
39
#
-
 
40
# TODO
-
 
41
#
-