Subversion Repositories HelenOS-historic

Rev

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

Rev 252 Rev 257
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
.text
29
.text
30
 
30
 
31
.global userspace
-
 
32
.global before_thread_runs_arch
-
 
33
.global cpu_identify
-
 
34
.global cpu_arch_init
-
 
35
.global cpu_sleep
-
 
36
.global cpu_print_report
-
 
37
.global dummy
-
 
38
.global fpu_init
-
 
39
	
-
 
40
before_thread_runs_arch:
-
 
41
userspace:
-
 
42
cpu_identify:
-
 
43
cpu_arch_init:
-
 
44
cpu_sleep:
-
 
45
cpu_print_report:
-
 
46
	
-
 
47
dummy:
-
 
48
0:
31
0:
49
	ret
32
	ret
50
 
-
 
51
fpu_init:
-
 
52
	fninit
-
 
53
	ret
-
 
54
 
33