From dfa2d3cc68616ddc7e5c5fd1bb9f250fa44cd2fd Mon Sep 17 00:00:00 2001 From: Nebuleon Fumika Date: Tue, 5 Feb 2013 01:33:39 -0500 Subject: Add include files from BassAceGold's library, release 2 fix 2.2. --- sdk-modifications/libsrc/core/ds2_dma.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'sdk-modifications/libsrc/core/ds2_dma.h') diff --git a/sdk-modifications/libsrc/core/ds2_dma.h b/sdk-modifications/libsrc/core/ds2_dma.h index a66588a..9a306cf 100644 --- a/sdk-modifications/libsrc/core/ds2_dma.h +++ b/sdk-modifications/libsrc/core/ds2_dma.h @@ -103,18 +103,18 @@ extern int _dmaCopy(int ch, void *dest, void *src, unsigned int size, unsigned i _dmaCopy(ch, dest, src, size, DMA_MODECOPY | DMA_MODE32BIT); /* -- * Copy 'size' bytes from src to dest, in blocks of 16 bits (2 bytes). -- * size is in bytes and must be a multiple of 2. -- * Both src and dest must be aligned to 16 bits (2 bytes). -- * Returns 0 on failure, non-zero on success. -- */ + * Copy 'size' bytes from src to dest, in blocks of 16 bits (2 bytes). + * size is in bytes and must be a multiple of 2. + * Both src and dest must be aligned to 16 bits (2 bytes). + * Returns 0 on failure, non-zero on success. + */ #define ds2_DMAcopy_16Bit(ch, dest, src, size)\ _dmaCopy(ch, dest, src, size, DMA_MODECOPY | DMA_MODE16BIT) /* -- * Copy 'size' individual bytes (8 bits at a time) from src to dest. -- * Returns 0 on failure, non-zero on success. -- */ + * Copy 'size' individual bytes (8 bits at a time) from src to dest. + * Returns 0 on failure, non-zero on success. + */ #define ds2_DMAcopy_8Bit(ch, dest, src, size)\ _dmaCopy(ch, dest, src, size, DMA_MODECOPY | DMA_MODE8BIT) -- cgit v1.2.3