diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-12-06 23:28:48 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-01-14 17:13:53 +0100 |
commit | f2c5b39ecdcc3d99f53517c18acfb950bfeecfd3 (patch) | |
tree | 09e5b105195bd9e8361ef51e1fbef953204aadb3 /target/mips/internal.h | |
parent | ca2690e36a96ca17c50f2be8aaa63d782e2126c3 (diff) | |
download | qemu-f2c5b39ecdcc3d99f53517c18acfb950bfeecfd3.zip qemu-f2c5b39ecdcc3d99f53517c18acfb950bfeecfd3.tar.gz qemu-f2c5b39ecdcc3d99f53517c18acfb950bfeecfd3.tar.bz2 |
target/mips: Move mmu_init() functions to tlb_helper.c
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20201206233949.3783184-15-f4bug@amsat.org>
Diffstat (limited to 'target/mips/internal.h')
-rw-r--r-- | target/mips/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/internal.h b/target/mips/internal.h index ae1181d..9a76980 100644 --- a/target/mips/internal.h +++ b/target/mips/internal.h @@ -207,6 +207,7 @@ void cpu_mips_start_count(CPUMIPSState *env); void cpu_mips_stop_count(CPUMIPSState *env); /* helper.c */ +void mmu_init(CPUMIPSState *env, const mips_def_t *def); bool mips_cpu_tlb_fill(CPUState *cs, vaddr address, int size, MMUAccessType access_type, int mmu_idx, bool probe, uintptr_t retaddr); |