Guard memcpy_vfpu behind PSP_VFPU

This commit is contained in:
cypress 2024-09-04 19:15:01 -07:00
parent 13f63e09fa
commit 26d21b1c88
2 changed files with 4 additions and 0 deletions

View file

@ -48,6 +48,7 @@ typedef struct
void Cache_FreeLow (int new_low_hunk);
void Cache_FreeHigh (int new_high_hunk);
#ifdef PSP_VFPU
void* memcpy_vfpu( void* dst, void* src, unsigned int size )
{
u8* src8 = (u8*)src;
@ -381,6 +382,7 @@ bytecopy:
return (dst);
}
#endif //PSP_VFPU
/*
===================

View file

@ -135,6 +135,8 @@ void *Cache_Alloc (cache_user_t *c, int size, char *name);
void Cache_Report (void);
#ifdef PSP_VFPU
void* memcpy_vfpu(void* dst, void* src, unsigned int size);
#endif // PSP_VFPU
#endif /* __ZZONE_H */