diff options
Diffstat (limited to 'target-i386/ops_template.h')
-rw-r--r-- | target-i386/ops_template.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target-i386/ops_template.h b/target-i386/ops_template.h index 182296743b..064881558b 100644 --- a/target-i386/ops_template.h +++ b/target-i386/ops_template.h @@ -608,6 +608,16 @@ void OPPROTO glue(glue(op_out, SUFFIX), _DX_T0)(void) glue(cpu_x86_out, SUFFIX)(env, EDX & 0xffff, T0); } +void OPPROTO glue(glue(op_check_io, SUFFIX), _T0)(void) +{ + glue(glue(check_io, SUFFIX), _T0)(); +} + +void OPPROTO glue(glue(op_check_io, SUFFIX), _DX)(void) +{ + glue(glue(check_io, SUFFIX), _DX)(); +} + #undef DATA_BITS #undef SHIFT_MASK #undef SIGN_MASK |