X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fpico_int.h;h=c85319c01bbef87772022138ea5e9d92300fb908;hb=fbba0ff6a0ce56304c8b6c558dd298d3a03c99d0;hp=7447db94d2bc7f9d2c0a621e62e9fae15465aa6c;hpb=ce07c136bb10124ebb2029d5275e27ca2a6254af;p=picodrive.git diff --git a/pico/pico_int.h b/pico/pico_int.h index 7447db9..c85319c 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -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);