Changeset 37689 in vbox for trunk/src/recompiler/softmmu_exec.h
- Timestamp:
- Jun 29, 2011 4:01:23 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/softmmu_exec.h
r36175 r37689 101 101 #endif /* (NB_MMU_MODES >= 5) */ 102 102 103 #if (NB_MMU_MODES > 5) 104 #error "NB_MMU_MODES > 5 is not supported for now" 105 #endif /* (NB_MMU_MODES > 5) */ 103 #if (NB_MMU_MODES >= 6) 104 105 #define ACCESS_TYPE 5 106 #define MEMSUFFIX MMU_MODE5_SUFFIX 107 #define DATA_SIZE 1 108 #include "softmmu_header.h" 109 110 #define DATA_SIZE 2 111 #include "softmmu_header.h" 112 113 #define DATA_SIZE 4 114 #include "softmmu_header.h" 115 116 #define DATA_SIZE 8 117 #include "softmmu_header.h" 118 #undef ACCESS_TYPE 119 #undef MEMSUFFIX 120 #endif /* (NB_MMU_MODES >= 6) */ 121 122 #if (NB_MMU_MODES > 6) 123 #error "NB_MMU_MODES > 6 is not supported for now" 124 #endif /* (NB_MMU_MODES > 6) */ 106 125 107 126 /* these access are slower, they must be as rare as possible */
Note:
See TracChangeset
for help on using the changeset viewer.