| 62 | } |
| 63 | |
| 64 | U32 DevDsp::writeNative(U8* buffer, U32 len) { |
| 65 | if (!this->audio->isOpen()) { |
| 66 | this->audio->openAudio(this->format, this->freq, this->channels); |
| 67 | } |
| 68 | return this->audio->writeAudio(buffer, len); |
| 69 | } |
| 70 | |
| 71 | U32 DevDsp::ioctl(KThread* thread, U32 request) { |
| 72 | U32 len = (request >> 16) & 0x3FFF; |
nothing calls this directly
no test coverage detected