metal-cos/sys/include/sga.h
2014-07-02 16:41:56 -07:00

21 lines
270 B
C

#ifndef __SGA_H__
#define __SGA_H__
#define SGARRAY_MAX_ENTRIES 32
typedef struct SGEntry
{
uint64_t offset;
uint64_t length;
} SGEntry;
typedef struct SGArray
{
uint32_t len;
SGEntry entries[SGARRAY_MAX_ENTRIES];
} SGArray;
#endif /* __SGA_H__ */