Subversion Repositories HelenOS

Rev

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

Rev 2410 Rev 2415
Line 37... Line 37...
37
#include <genarch/mm/as_pt.h>
37
#include <genarch/mm/as_pt.h>
38
#include <genarch/mm/asid_fifo.h>
38
#include <genarch/mm/asid_fifo.h>
39
#include <mm/as.h>
39
#include <mm/as.h>
40
#include <arch.h>
40
#include <arch.h>
41
 
41
 
42
/** Architecture dependent address space init. */
42
/** Architecture dependent address space init.
-
 
43
 *  
-
 
44
 *  Since ARM supports page tables, #as_pt_operations are used.
-
 
45
 */
43
void as_arch_init(void)
46
void as_arch_init(void)
44
{
47
{
45
    as_operations = &as_pt_operations;
48
    as_operations = &as_pt_operations;
46
}
49
}
47
 
50