--- trunk/src/include/cpu_sh.h 2007/10/08 16:21:53 38 +++ trunk/src/include/cpu_sh.h 2007/10/08 16:22:11 40 @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_sh.h,v 1.39 2007/04/04 19:59:24 debug Exp $ + * $Id: cpu_sh.h,v 1.41 2007/04/28 09:19:34 debug Exp $ * * Note: Many things here are SH4-specific, so it probably doesn't work * for SH3 emulation. @@ -152,7 +152,7 @@ /* Cached and calculated values: */ uint8_t int_prio_and_pending[0x1000 / 0x20]; int16_t int_to_assert; /* Calculated int to assert */ - int int_level; /* Calculated int level */ + unsigned int int_level; /* Calculated int level */ /* Timer/clock functionality: */ int pclock; @@ -163,6 +163,9 @@ uint32_t dmac_tcr[4]; uint32_t dmac_chcr[4]; + /* PCI controller: */ + struct pci_data *pcic_pcibus; + /* * Instruction translation cache and Virtual->Physical->Host @@ -170,7 +173,7 @@ */ DYNTRANS_ITC(sh) VPH_TLBS(sh,SH) - VPH32(sh,SH,uint64_t,uint8_t) + VPH32(sh,SH,uint32_t,uint8_t) };