Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. #define RETRO_MEMDOMAIN_FLAG_LABEL_ARTIFICIAL (1 << 18) /* Labels the memory domain as being somewhat fictitious, provided for convenience */
  2. #define RETRO_MEMDOMAIN_FLAG_LABEL_CHEATS (1 << 19) /* Labels the memory domain as being suitable for cheat searching */
  3. #define RETRO_MEMDOMAIN_FLAG_LABEL_BUS (1 << 20) /* Labels the memory domain as being bus-like */
  4. #define RETRO_MEMDOMAIN_FLAG_LABEL_FILE (1 << 21) /* Labels the memory domain as being file-like (a raw representation of a loaded ROM file, for instance) */
  5. #define RETRO_MEMDOMAIN_FLAG_LABEL_MEMORY (1 << 22) /* Labels the memory domain as being a memory-like resource */
  6. #define RETRO_MEMDOMAIN_FLAG_LABEL_DEFAULT (1 << 23) /* Labels the memory domain as being the ideal for a certain purpose. ex. DEFAULT BUS will be the main cpu's sysbus */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement