A structure that describes a specified range of offsets in a state structure
#include <qvm/utils.h>
struct qvm_slice_descriptor {
uint32_t writable;
uint16_t offset;
uint16_t store_offset;
uint8_t nbytes;
} ;
A bitset of writable bits in the range.
The starting offset in the read-only structure.
The offset where modifications are stored in the read-write structure.
The number of bytes represented by the descriptor.
For more information, see the Virtual Device Developer's Guide.