Subversion Repositories HelenOS-historic

Rev

Rev 1004 | Rev 1132 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1004 Rev 1007
Line 35... Line 35...
35
void arch_pre_mm_init(void)
35
void arch_pre_mm_init(void)
36
{
36
{
37
    /* Initialize dispatch table */
37
    /* Initialize dispatch table */
38
    interrupt_init();  
38
    interrupt_init();
39
 
39
   
-
 
40
    /* Start decrementer */
-
 
41
    start_decrementer();
-
 
42
 
40
    ppc32_console_init();
43
    ppc32_console_init();
41
    cuda_init();
44
    cuda_init();
42
}
45
}
43
 
46
 
44
void arch_post_mm_init(void)
47
void arch_post_mm_init(void)
Line 55... Line 58...
55
}
58
}
56
 
59
 
57
void calibrate_delay_loop(void)
60
void calibrate_delay_loop(void)
58
{
61
{
59
}
62
}
-
 
63