G3X_SetFifoIntrCond

C Specification

#include <nitro/gx/g3x.h>

void G3X_SetFifoIntrCond(GXFifoIntrCond cond);

Arguments

Command FIFO interrupt request generation conditions.

Return Values

None.

Description

This function sets command FIFO interrupt request generation conditions. Select from these three options: disable interrupt request, interrupt request when under half, interrupt request when empty.

GX_FIFOINTR_COND_DISABLE Disable command FIFO interrupt request
GX_FIFOINTR_COND_UNDERHALF Interrupt request when command FIFO half or less
GX_FIFOINTR_COND_EMPTY Interrupt request when command FIFO is empty

The following are described in the GXFifoIntrCond form, type definition.

typedef enum
{
GX_FIFOINTR_COND_DISABLE = 0,
GX_FIFOINTR_COND_UNDERHALF = 1,
GX_FIFOINTR_COND_EMPTY = 2
}
GXFifoIntrCond;

See Also

Revision History

01/19/2004 Initial version.