mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Temporary fix for i386 host
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3994 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
77b087cd27
commit
b25deda7ca
2 changed files with 27 additions and 0 deletions
|
@ -4,6 +4,16 @@
|
|||
#define ADDR(x) (x)
|
||||
#endif
|
||||
|
||||
#ifdef __i386__
|
||||
/*** Integer store ***/
|
||||
void OPPROTO glue(op_std, MEMSUFFIX)(void)
|
||||
{
|
||||
uint64_t tmp = ((uint64_t)T1 << 32) | (uint64_t)(T2 & 0xffffffff);
|
||||
|
||||
glue(stq, MEMSUFFIX)(ADDR(T0), tmp);
|
||||
}
|
||||
|
||||
#endif /* __i386__ */
|
||||
/*** Floating-point store ***/
|
||||
void OPPROTO glue(op_stf, MEMSUFFIX) (void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue