gasp_walk_state_flags

Flags to specify what guest address space information is needed

Synopsis:

#include <qvm/gasp.h>
enum gasp_walk_state_flags {
    GWS_HOST = 0x0001,
    GWS_RAM = 0x0002,
    GWS_ROM = 0x0004,
    GWS_DMA_SRC = 0x0008,
    GWS_DMA_TGT = 0x0010
};

Data:

GWS_HOST
Host location information.
GWS_RAM
Guest RAM information.
GWS_ROM
Guest ROM information.
GWS_DMA_SRC
Regions that can be a DMA source (i.e., that can be read by a DMA device).
GWS_DMA_TGT
Regions that can be a DMA target (i.e., that can be written by a DMA device).