Search
lxdream.org :: lxdream/src/sh4/dmac.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/dmac.h
changeset 430:467519b050f4
prev58:ce3657a81a26
next561:533f6b478071
author nkeynes
date Mon Oct 08 12:09:06 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Fix compilation warnings
file annotate diff log raw
1.1 --- a/src/sh4/dmac.h Mon Jan 02 14:48:29 2006 +0000
1.2 +++ b/src/sh4/dmac.h Mon Oct 08 12:09:06 2007 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: dmac.h,v 1.1 2006-01-02 14:48:29 nkeynes Exp $
1.6 + * $Id: dmac.h,v 1.2 2007-10-08 12:06:01 nkeynes Exp $
1.7 *
1.8 * SH4 onboard DMA controller (DMAC) definitions.
1.9 *
1.10 @@ -47,14 +47,14 @@
1.11 * buffer up to a maximum of bytecount bytes.
1.12 * @return Actual number of bytes copied.
1.13 */
1.14 -uint32_t DMAC_get_buffer( int channel, char *buf, uint32_t bytecount );
1.15 +uint32_t DMAC_get_buffer( int channel, unsigned char *buf, uint32_t bytecount );
1.16
1.17 /**
1.18 * execute an external-device-to-memory transfer. Copies data from the
1.19 * supplied buffer into memory up to a maximum of bytecount bytes.
1.20 * @return Actual number of bytes copied.
1.21 */
1.22 -uint32_t DMAC_put_buffer( int channel, char *buf, uint32_t bytecount );
1.23 +uint32_t DMAC_put_buffer( int channel, unsigned char *buf, uint32_t bytecount );
1.24
1.25 #ifdef __cplusplus
1.26 }
.