Subversion Repositories HelenOS

Rev

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

Rev 2721 Rev 2723
Line 44... Line 44...
44
 
44
 
45
#define PA2MA(x)    ((start_info.pm_map[((uintptr_t) (x)) >> 12] << 12) + (((uintptr_t) (x)) & 0xfff))
45
#define PA2MA(x)    ((start_info.pm_map[((uintptr_t) (x)) >> 12] << 12) + (((uintptr_t) (x)) & 0xfff))
46
#define MA2PA(x)    ((mp_map[((uintptr_t) (x)) >> 12] << 12) + (((uintptr_t) (x)) & 0xfff))
46
#define MA2PA(x)    ((mp_map[((uintptr_t) (x)) >> 12] << 12) + (((uintptr_t) (x)) & 0xfff))
47
 
47
 
48
extern void frame_arch_init(void);
48
extern void frame_arch_init(void);
49
#define physmem_print()
49
extern void physmem_print(void);
50
 
50
 
51
#endif /* __ASM__ */
51
#endif /* __ASM__ */
52
#endif /* KERNEL */
52
#endif /* KERNEL */
53
 
53
 
54
#endif
54
#endif