target: e2k: Log msg if wd.fx is setted.
This commit is contained in:
parent
9662877725
commit
a19227acd9
@ -315,6 +315,11 @@ void helper_setwd(CPUE2KState *env, uint32_t lts)
|
||||
env->wd.size = extract32(lts, 5, 7) * 2;
|
||||
env->wd.fx = extract32(lts, 4, 1) == 0;
|
||||
|
||||
if (env->wd.fx) {
|
||||
qemu_log_mask(LOG_UNIMP, "0x%lx: wd.fx is not implemented!\n",
|
||||
env->ip);
|
||||
}
|
||||
|
||||
if (env->version >= 3) {
|
||||
bool dbl = extract32(lts, 3, 1);
|
||||
// TODO: set dbl
|
||||
|
Loading…
Reference in New Issue
Block a user