completed DMA buffer state vars to be all there.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10960 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rudolf Cornelissen 2005-01-22 19:24:37 +00:00
parent fc61675c5a
commit 61e1618dce
1 changed files with 5 additions and 4 deletions

View File

@ -198,10 +198,11 @@ typedef struct {
} fifo;
struct {
uint32 *cmdbuffer; /* location of DMA command buffer */
uint32 put; /* */
uint32 current; /* */
uint32 free; /* */
}dma;
uint32 put; /* last 32-bit-word adress given to engine to exec. to */
uint32 current; /* first free 32-bit-word adress in buffer */
uint32 free; /* nr. of useable free 32-bit words remaining in buffer */
uint32 max; /* command buffer's useable size in 32-bit words */
} dma;
} engine;
/* pointers to first and last free memory adress for 3D use: cardmem local offsets */