Changeset 6854 in vbox for trunk/include/VBox
- Timestamp:
- Feb 7, 2008 7:24:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pgm.h
r6837 r6854 289 289 PGMROMPROT_READ_RAM_WRITE_IGNORE, 290 290 /** Read from the shadow ROM page, ignore writes. 291 * Map the shadow page read-write, noaccess handler. */291 * Map the shadow page read-write, disabled write access handler. */ 292 292 PGMROMPROT_READ_RAM_WRITE_RAM, 293 293 /** The end of valid values. */ … … 296 296 PGMROMPROT_32BIT_HACK = 0x7fffffff 297 297 } PGMROMPROT; 298 299 /** 300 * Is the ROM mapped (true) or is the shadow RAM mapped (false). 301 * 302 * @returns boolean. 303 * @param enmProt The PGMROMPROT value, must be valid. 304 */ 305 #define PGMROMPROT_IS_ROM(enmProt) \ 306 ( (enmProt) == PGMROMPROT_READ_ROM_WRITE_IGNORE \ 307 || (enmProt) == PGMROMPROT_READ_ROM_WRITE_RAM ) 298 308 299 309
Note:
See TracChangeset
for help on using the changeset viewer.