aboutsummaryrefslogtreecommitdiff
path: root/sdk-modifications/libsrc/core/ds2_dma.h
diff options
context:
space:
mode:
Diffstat (limited to 'sdk-modifications/libsrc/core/ds2_dma.h')
-rw-r--r--sdk-modifications/libsrc/core/ds2_dma.h16
1 files changed, 8 insertions, 8 deletions
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)