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
Need host location information.
GWS_RAM
Need guest RAM information.
GWS_ROM
Need guest ROM information.
GWS_DMA_SRC
Need regions that can be DMA source (i.e., that can be read by a DMA device).
GWS_DMA_TGT
Need regions that can be DMA target (i.e., that can be written by a DMA device).

Library:

Provided by qvm; no external library is required.