Changeset 14956 in vbox for trunk/src/recompiler_new
- Timestamp:
- Dec 3, 2008 8:34:30 PM (16 years ago)
- Location:
- trunk/src/recompiler_new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/VBoxRecompiler.c
r14755 r14956 3114 3114 * @param SrcGCPhys The source address (guest physical). 3115 3115 */ 3116 uint 8_t remR3PhysReadU8(RTGCPHYS SrcGCPhys)3116 uint32_t remR3PhysReadU8(RTGCPHYS SrcGCPhys) 3117 3117 { 3118 3118 uint8_t val; … … 3133 3133 * @param SrcGCPhys The source address (guest physical). 3134 3134 */ 3135 int 8_t remR3PhysReadS8(RTGCPHYS SrcGCPhys)3135 int32_t remR3PhysReadS8(RTGCPHYS SrcGCPhys) 3136 3136 { 3137 3137 int8_t val; … … 3152 3152 * @param SrcGCPhys The source address (guest physical). 3153 3153 */ 3154 uint 16_t remR3PhysReadU16(RTGCPHYS SrcGCPhys)3154 uint32_t remR3PhysReadU16(RTGCPHYS SrcGCPhys) 3155 3155 { 3156 3156 uint16_t val; … … 3171 3171 * @param SrcGCPhys The source address (guest physical). 3172 3172 */ 3173 int 16_t remR3PhysReadS16(RTGCPHYS SrcGCPhys)3173 int32_t remR3PhysReadS16(RTGCPHYS SrcGCPhys) 3174 3174 { 3175 3175 uint16_t val; -
trunk/src/recompiler_new/cpu-all.h
r14475 r14956 256 256 257 257 void remR3PhysRead(RTGCPHYS SrcGCPhys, void *pvDst, unsigned cb); 258 uint 8_tremR3PhysReadU8(RTGCPHYS SrcGCPhys);259 int 8_tremR3PhysReadS8(RTGCPHYS SrcGCPhys);260 uint 16_t remR3PhysReadU16(RTGCPHYS SrcGCPhys);261 int 16_t remR3PhysReadS16(RTGCPHYS SrcGCPhys);258 uint32_t remR3PhysReadU8(RTGCPHYS SrcGCPhys); 259 int32_t remR3PhysReadS8(RTGCPHYS SrcGCPhys); 260 uint32_t remR3PhysReadU16(RTGCPHYS SrcGCPhys); 261 int32_t remR3PhysReadS16(RTGCPHYS SrcGCPhys); 262 262 uint32_t remR3PhysReadU32(RTGCPHYS SrcGCPhys); 263 263 int32_t remR3PhysReadS32(RTGCPHYS SrcGCPhys);
Note:
See TracChangeset
for help on using the changeset viewer.