diff options
author | Artyom Tarasenko <atar4qemu@gmail.com> | 2016-04-18 15:30:48 +0200 |
---|---|---|
committer | Artyom Tarasenko <atar4qemu@gmail.com> | 2017-01-18 22:03:44 +0100 |
commit | 2f1b52920205863024cc86007e88557f4c2c898e (patch) | |
tree | 2ace627645bf876cf7d784bd19b46942f1b45bce | |
parent | 7cd39ef234a7e2eea45a08cd15f920da5f1ba008 (diff) |
target-sparc: ignore writes to UA2005 CPU mondo queue register
Signed-off-by: Artyom Tarasenko <atar4qemu@gmail.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
-rw-r--r-- | target/sparc/ldst_helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/sparc/ldst_helper.c b/target/sparc/ldst_helper.c index ade4fb0541..d3747cf0f2 100644 --- a/target/sparc/ldst_helper.c +++ b/target/sparc/ldst_helper.c @@ -1631,6 +1631,7 @@ void helper_st_asi(CPUSPARCState *env, target_ulong addr, target_ulong val, env->scratch[i] = val; return; } + case ASI_QUEUE: /* UA2005 CPU mondo queue */ case ASI_DCACHE_DATA: /* D-cache data */ case ASI_DCACHE_TAG: /* D-cache tag access */ case ASI_ESTATE_ERROR_EN: /* E-cache error enable */ |