* DSP: Own DSP RAM and add it to fastmem * Vendor Teakra * Add MacOS support to fastmem * Fix MacOS fastmem paths * Fix iOS build
19 lines
294 B
C
19 lines
294 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool Teakra_Disasm_NeedExpansion(uint16_t opcode);
|
|
|
|
size_t Teakra_Disasm_Do(char* dst, size_t dstlen,
|
|
uint16_t opcode, uint16_t expansion /*= 0*/);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|