mirror of https://github.com/xemu-project/xemu.git
added two more jump points
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@378 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
facc68be25
commit
c106152d26
|
@ -161,7 +161,7 @@ extern int __op_param1, __op_param2, __op_param3;
|
||||||
#define PARAM3 ((long)(&__op_param3))
|
#define PARAM3 ((long)(&__op_param3))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern int __op_jmp0, __op_jmp1;
|
extern int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3;
|
||||||
|
|
||||||
#ifdef __i386__
|
#ifdef __i386__
|
||||||
#define EXIT_TB() asm volatile ("ret")
|
#define EXIT_TB() asm volatile ("ret")
|
||||||
|
|
2
dyngen.h
2
dyngen.h
|
@ -19,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int __op_param1, __op_param2, __op_param3;
|
int __op_param1, __op_param2, __op_param3;
|
||||||
int __op_jmp0, __op_jmp1;
|
int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3;
|
||||||
|
|
||||||
#ifdef __i386__
|
#ifdef __i386__
|
||||||
static inline void flush_icache_range(unsigned long start, unsigned long stop)
|
static inline void flush_icache_range(unsigned long start, unsigned long stop)
|
||||||
|
|
Loading…
Reference in New Issue