diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-04-13 10:33:23 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-05-02 16:49:35 +0200 |
commit | 137f4d87c6dd3c727fd5b5e777e89f610b51ae8d (patch) | |
tree | 9d4fb9db9c969d2c3f21a6474da6c57412bcb88a /target/mips/sysemu/meson.build | |
parent | 85d8da3fea0c4ff38bbe759febfc2d2299b33ccd (diff) | |
download | qemu-137f4d87c6dd3c727fd5b5e777e89f610b51ae8d.zip qemu-137f4d87c6dd3c727fd5b5e777e89f610b51ae8d.tar.gz qemu-137f4d87c6dd3c727fd5b5e777e89f610b51ae8d.tar.bz2 |
target/mips: Move physical addressing code to sysemu/physaddr.c
Declare get_physical_address() with local scope and move it along
with mips_cpu_get_phys_page_debug() to sysemu/physaddr.c new file.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210428170410.479308-18-f4bug@amsat.org>
Diffstat (limited to 'target/mips/sysemu/meson.build')
-rw-r--r-- | target/mips/sysemu/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/sysemu/meson.build b/target/mips/sysemu/meson.build index f2a1ff4..925ceea 100644 --- a/target/mips/sysemu/meson.build +++ b/target/mips/sysemu/meson.build @@ -2,4 +2,5 @@ mips_softmmu_ss.add(files( 'addr.c', 'cp0_timer.c', 'machine.c', + 'physaddr.c', )) |