Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xing Lin
qemu
Commits
3e25f951
Commit
3e25f951
authored
Nov 13, 2003
by
bellard
Browse files
io map checks
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@452
c046a42c-6fe2-441c-8c8c-71466251a162
parent
246d897f
Changes
2
Hide whitespace changes
Inline
Side-by-side
target-i386/exec.h
View file @
3e25f951
...
...
@@ -171,6 +171,13 @@ void helper_wrmsr(void);
void
helper_lsl
(
void
);
void
helper_lar
(
void
);
void
check_iob_T0
(
void
);
void
check_iow_T0
(
void
);
void
check_iol_T0
(
void
);
void
check_iob_DX
(
void
);
void
check_iow_DX
(
void
);
void
check_iol_DX
(
void
);
/* XXX: move that to a generic header */
#if !defined(CONFIG_USER_ONLY)
...
...
target-i386/ops_template.h
View file @
3e25f951
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment