diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-29 17:32:36 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-29 17:32:36 +0000 |
commit | fb3e5849bb139e8213b7afb5abd7ef5cc985d10b (patch) | |
tree | 667fc6ee486c6a762c1fddb007396660ae3f5733 /exec-i386.h | |
parent | 7854b05654b49c2197faef358e3ec1a7559797b9 (diff) |
s390 support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@65 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec-i386.h')
-rw-r--r-- | exec-i386.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/exec-i386.h b/exec-i386.h index 7a6f74b924..28da51def9 100644 --- a/exec-i386.h +++ b/exec-i386.h @@ -93,6 +93,12 @@ register unsigned int T1 asm("l1"); register unsigned int A0 asm("l2"); register struct CPUX86State *env asm("l3"); #endif +#ifdef __s390__ +register unsigned int T0 asm("r7"); +register unsigned int T1 asm("r8"); +register unsigned int A0 asm("r9"); +register struct CPUX86State *env asm("r10"); +#endif /* force GCC to generate only one epilog at the end of the function */ #define FORCE_RET() asm volatile (""); |