metaforce/NESEmulator/apu.c

12 lines
133 B
C
Raw Normal View History

2018-02-03 00:35:19 +00:00
#include "fixNES/apu.c"
2018-06-18 21:38:51 +00:00
uint32_t apuGetMaxBufSize()
2018-02-03 00:35:19 +00:00
{
2018-06-18 21:38:51 +00:00
return apu.BufSizeBytes;
2018-02-03 00:35:19 +00:00
}
2018-06-18 20:12:40 +00:00
2018-06-18 21:38:51 +00:00
void apuResetPos()
2018-06-18 20:12:40 +00:00
{
2018-06-18 21:38:51 +00:00
apu.curBufPos = 0;
2018-06-18 20:12:40 +00:00
}