Increase CDXA support

This commit is contained in:
2024-05-29 18:37:24 +02:00
parent fe66304d6f
commit 676ad434d7
8 changed files with 66 additions and 32 deletions

View File

@@ -3,11 +3,12 @@
namespace JabyEngine {
namespace CDXA {
struct CDFile {
uint8_t rel_lba_idx;
};
void play(const volatile AutoLBAEntry* lba, const CDFile& file, uint8_t channel);
void play(const volatile AutoLBAEntry* lba, uint8_t rel_lba_idx, uint8_t channel, bool double_speed);
void stop();
void set_channel(uint8_t channel);
void push_play();
void pop_play();
}
}