mirror of
https://github.com/ARMSX2/ARMSX1.git
synced 2026-08-24 16:53:35 -07:00
11 lines
224 B
C
11 lines
224 B
C
#include "xa.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
void xa_decode_audio(uint8_t* src, uint16_t* dst) {
|
|
// Not a XA sector
|
|
if (src[XA_HDR_MODE] != 0x02)
|
|
return;
|
|
|
|
// uint8_t ci = src[XA_SHDR_CODINGINFO];
|
|
} |