Update of /cvsroot/hppaqemu/hppaqemu
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv9529
Modified Files:
cpu-exec.c
Log Message:
Define DYNAMIC_PC and JUMP_PC, and store iaoq[1] in dc->cs_base
a la the SPARC target.
Index: cpu-exec.c
===================================================================
RCS file: /cvsroot/hppaqemu/hppaqemu/cpu-exec.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** cpu-exec.c 6 Mar 2007 14:41:50 -0000 1.5
--- cpu-exec.c 12 Mar 2007 14:41:14 -0000 1.6
***************
*** 204,209 ****
pc = env->pc;
#elif defined(TARGET_HPPA)
! flags = env->psw;
! cs_base = 0;
pc = env->iaoq[0];
#else
--- 204,209 ----
pc = env->pc;
#elif defined(TARGET_HPPA)
! flags = env->psw & PSW_N; /* XXX: use more bits? */
! cs_base = env->iaoq[1];
pc = env->iaoq[0];
#else
|