mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
pandora: fix build
Fixes: df9251536d
"libretro: satisfy vita's dynarec needs in a cleaner way"
This commit is contained in:
parent
eaa147519f
commit
759c9d3846
3 changed files with 12 additions and 0 deletions
|
@ -1017,6 +1017,7 @@ static void rcache_unlock_all(void)
|
||||||
reg_temp[i].flags &= ~HRF_LOCKED;
|
reg_temp[i].flags &= ~HRF_LOCKED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef DRC_CMP
|
||||||
static u32 rcache_used_hreg_mask(void)
|
static u32 rcache_used_hreg_mask(void)
|
||||||
{
|
{
|
||||||
u32 mask = 0;
|
u32 mask = 0;
|
||||||
|
@ -1028,6 +1029,7 @@ static u32 rcache_used_hreg_mask(void)
|
||||||
|
|
||||||
return mask;
|
return mask;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void rcache_clean(void)
|
static void rcache_clean(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -179,6 +179,11 @@ void plat_video_menu_leave(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void *plat_mem_get_for_drc(size_t size)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
void plat_early_init(void)
|
void plat_early_init(void)
|
||||||
{
|
{
|
||||||
// just use gettimeofday until plat_init()
|
// just use gettimeofday until plat_init()
|
||||||
|
|
|
@ -442,6 +442,11 @@ void plat_wait_till_us(unsigned int us_to)
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void *plat_mem_get_for_drc(size_t size)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
void plat_early_init(void)
|
void plat_early_init(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue