mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
make memcpy32/memset32 take void *
This commit is contained in:
parent
ce07c136bb
commit
fbba0ff6a0
2 changed files with 11 additions and 6 deletions
|
@ -770,8 +770,8 @@ extern int (*PicoDmaHook)(unsigned int source, int len, unsigned short **srcp, u
|
|||
// misc.c
|
||||
PICO_INTERNAL_ASM void memcpy16(unsigned short *dest, unsigned short *src, int count);
|
||||
PICO_INTERNAL_ASM void memcpy16bswap(unsigned short *dest, void *src, int count);
|
||||
PICO_INTERNAL_ASM void memcpy32(int *dest, int *src, int count); // 32bit word count
|
||||
PICO_INTERNAL_ASM void memset32(int *dest, int c, int count);
|
||||
PICO_INTERNAL_ASM void memcpy32(void *dest, const void *src, int count); // 32bit word count
|
||||
PICO_INTERNAL_ASM void memset32(void *dest, int c, int count);
|
||||
|
||||
// eeprom.c
|
||||
void EEPROM_write8(unsigned int a, unsigned int d);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue