metaforce/NESEmulator/apu.c

12 lines
133 B
C
Raw Normal View History

2018-02-02 16:35:19 -08:00
#include "fixNES/apu.c"
2018-06-18 14:38:51 -07:00
uint32_t apuGetMaxBufSize()
2018-02-02 16:35:19 -08:00
{
2018-06-18 14:38:51 -07:00
return apu.BufSizeBytes;
2018-02-02 16:35:19 -08:00
}
2018-06-18 13:12:40 -07:00
2018-06-18 14:38:51 -07:00
void apuResetPos()
2018-06-18 13:12:40 -07:00
{
2018-06-18 14:38:51 -07:00
apu.curBufPos = 0;
2018-06-18 13:12:40 -07:00
}