blob: 6f9a0c2bf85e5287f4de33f970fc168612f683d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#if !defined (__MMU_HASH32_H__)
#define __MMU_HASH32_H__
#ifndef CONFIG_USER_ONLY
int pte32_is_valid(target_ulong pte0);
int get_segment32(CPUPPCState *env, mmu_ctx_t *ctx,
target_ulong eaddr, int rw, int type);
#endif /* CONFIG_USER_ONLY */
#endif /* __MMU_HASH32_H__ */
|