vgm-conv
Version:
Chip-type and clock converter for VGM.
11 lines (10 loc) • 403 B
TypeScript
import { VGMConverter, ChipInfo } from "./vgm-converter";
import { VGMCommand, VGMWriteDataTargetId } from "vgm-parser";
type _OPLType = "y8950" | "ym3526";
export declare class OPL2ToOPLConverter extends VGMConverter {
_type: _OPLType;
_target: VGMWriteDataTargetId;
constructor(from: ChipInfo, to: ChipInfo, opts: any);
convertCommand(cmd: VGMCommand): Array<VGMCommand>;
}
export {};