diff options
author | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2018-04-16 21:25:01 +0200 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2018-05-29 09:35:14 +0200 |
commit | f0f7e7f7b284f536389a3c5b67de681055325317 (patch) | |
tree | 5879e42d2c1164f540b34b245985f57954eaddea /target/microblaze/helper.h | |
parent | 05a9a6519c9127b5fb0b13481ecc0e72331c8a38 (diff) | |
download | qemu-f0f7e7f7b284f536389a3c5b67de681055325317.zip qemu-f0f7e7f7b284f536389a3c5b67de681055325317.tar.gz qemu-f0f7e7f7b284f536389a3c5b67de681055325317.tar.bz2 |
target-microblaze: Add support for extended access to TLBLO
Add support for extended access to TLBLO's upper 32 bits.
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target/microblaze/helper.h')
-rw-r--r-- | target/microblaze/helper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/microblaze/helper.h b/target/microblaze/helper.h index ce70353..2f8bdea 100644 --- a/target/microblaze/helper.h +++ b/target/microblaze/helper.h @@ -25,8 +25,8 @@ DEF_HELPER_3(fcmp_ge, i32, env, i32, i32) DEF_HELPER_FLAGS_2(pcmpbf, TCG_CALL_NO_RWG_SE, i32, i32, i32) #if !defined(CONFIG_USER_ONLY) -DEF_HELPER_2(mmu_read, i32, env, i32) -DEF_HELPER_3(mmu_write, void, env, i32, i32) +DEF_HELPER_3(mmu_read, i32, env, i32, i32) +DEF_HELPER_4(mmu_write, void, env, i32, i32, i32) #endif DEF_HELPER_5(memalign, void, env, tl, i32, i32, i32) |