|
|
| version 1.2, 2003/12/08 00:55:32 | version 1.10, 2007/11/03 00:00:20 |
|---|---|
| Line 5 | Line 5 |
| enum { | enum { |
| DMA_CH00 = 0, | |
| DMA_CH01 = 1, | |
| DMA_2HD = 2, | |
| DMA_2DD = 3, | |
| DMAEXT_START = 0, | DMAEXT_START = 0, |
| DMAEXT_END = 1, | DMAEXT_END = 1, |
| DMAEXT_BREAK = 2, | DMAEXT_BREAK = 2, |
| DMA_INITSIGNALONLY = 1 | DMA_INITSIGNALONLY = 1, |
| DMADEV_NONE = 0, | |
| DMADEV_2HD = 1, | |
| DMADEV_2DD = 2, | |
| DMADEV_SASI = 3, | |
| DMADEV_SCSI = 4, | |
| DMADEV_CS4231 = 5 | |
| }; | }; |
| #if defined(BYTESEX_LITTLE) | #if defined(BYTESEX_LITTLE) |
| Line 34 enum { | Line 36 enum { |
| #endif | #endif |
| typedef struct { | typedef struct { |
| void (DMACCALL * outproc)(REG8 data); | |
| REG8 (DMACCALL * inproc)(void); | |
| REG8 (DMACCALL * extproc)(REG8 action); | |
| } DMAPROC; | |
| typedef struct { | |
| union { | union { |
| BYTE b[4]; | UINT8 b[4]; |
| UINT16 w[2]; | UINT16 w[2]; |
| UINT32 d; | UINT32 d; |
| } adrs; | } adrs; |
| union { | union { |
| BYTE b[2]; | UINT8 b[2]; |
| UINT16 w; | UINT16 w; |
| } leng; | } leng; |
| union { | union { |
| BYTE b[2]; | UINT8 b[2]; |
| UINT16 w; | UINT16 w; |
| } adrsorg; | } adrsorg; |
| union { | union { |
| BYTE b[2]; | UINT8 b[2]; |
| UINT16 w; | UINT16 w; |
| } lengorg; | } lengorg; |
| UINT16 action; | UINT8 bound; |
| void (DMACCALL * outproc)(REG8 data); | UINT8 action; |
| REG8 (DMACCALL * inproc)(void); | DMAPROC proc; |
| REG8 (DMACCALL * extproc)(REG8 action); | |
| UINT8 mode; | UINT8 mode; |
| UINT8 sreq; | UINT8 sreq; |
| UINT8 ready; | UINT8 ready; |
| Line 62 typedef struct { | Line 69 typedef struct { |
| } _DMACH, *DMACH; | } _DMACH, *DMACH; |
| typedef struct { | typedef struct { |
| UINT8 device; | |
| UINT8 channel; | |
| } DMADEV; | |
| typedef struct { | |
| _DMACH dmach[4]; | _DMACH dmach[4]; |
| int lh; | int lh; |
| UINT work; | UINT8 work; |
| UINT working; | UINT8 working; |
| UINT8 mask; | UINT8 mask; |
| UINT8 stat; | UINT8 stat; |
| UINT devices; | |
| DMADEV device[8]; | |
| } _DMAC, *DMAC; | } _DMAC, *DMAC; |
| Line 79 void DMACCALL dma_dummyout(REG8 data); | Line 93 void DMACCALL dma_dummyout(REG8 data); |
| REG8 DMACCALL dma_dummyin(void); | REG8 DMACCALL dma_dummyin(void); |
| REG8 DMACCALL dma_dummyproc(REG8 func); | REG8 DMACCALL dma_dummyproc(REG8 func); |
| void dmac_reset(void); | void dmac_reset(const NP2CFG *pConfig); |
| void dmac_bind(void); | void dmac_bind(void); |
| void dmac_extbind(void); | |
| void dmac_check(void); | void dmac_check(void); |
| UINT dmac_getdatas(DMACH dmach, UINT8 *buf, UINT size); | |
| void dmac_procset(void); | |
| void dmac_attach(REG8 device, REG8 channel); | |
| void dmac_detach(REG8 device); | |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |