]> Git Repo - qemu.git/blame - target/moxie/mmu.h
target/mips: Add definition of nanoMIPS I7200 CPU
[qemu.git] / target / moxie / mmu.h
CommitLineData
525bd324
AG
1#define MOXIE_MMU_ERR_EXEC 0
2#define MOXIE_MMU_ERR_READ 1
3#define MOXIE_MMU_ERR_WRITE 2
4#define MOXIE_MMU_ERR_FLUSH 3
5
6typedef struct {
7 uint32_t phy;
8 uint32_t pfn;
525bd324
AG
9 int cause_op;
10} MoxieMMUResult;
11
12int moxie_mmu_translate(MoxieMMUResult *res,
13 CPUMoxieState *env, uint32_t vaddr,
14 int rw, int mmu_idx);
This page took 0.275898 seconds and 4 git commands to generate.