Support CDDA auto-repeat

This commit is contained in:
2024-05-09 14:13:28 +02:00
parent a9444a19f2
commit 058ce5448c
4 changed files with 45 additions and 24 deletions

View File

@@ -15,7 +15,7 @@ namespace JabyEngine {
TrackList get_tracks();
void play(uint8_t track);
void pause();
void stop();
void push_play();
void pop_play();

View File

@@ -160,6 +160,7 @@ namespace JabyEngine {
static constexpr Desc SetMode{0x0E, Interrupt::Type::Acknowledge};
static constexpr Desc GetLocP{0x11, Interrupt::Type::Acknowledge};
static constexpr Desc GetTN{0x13, Interrupt::Type::Acknowledge};
static constexpr Desc GetTD{0x14, Interrupt::Type::Acknowledge};
};
static constexpr auto IORegister1Adr = 0x1F801801;