Update of /cvsroot/hppaqemu/hppaqemu/target-hppa
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv9529/target-hppa
Modified Files:
translate.c
Log Message:
Define DYNAMIC_PC and JUMP_PC, and store iaoq[1] in dc->cs_base
a la the SPARC target.
Index: translate.c
===================================================================
RCS file: /cvsroot/hppaqemu/hppaqemu/target-hppa/translate.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** translate.c 12 Mar 2007 14:27:29 -0000 1.16
--- translate.c 12 Mar 2007 14:41:14 -0000 1.17
***************
*** 38,41 ****
--- 38,45 ----
#endif
+ #define DYNAMIC_PC 1 /* dynamic PC value */
+ #define JUMP_PC 2 /* dynamic PC value which takes only two values
+ according to jump_pc[T2] */
+
typedef struct DisasContext {
target_ulong iaoq[2];
|