igir
Version:
🕹 A zero-setup ROM collection manager that sorts, filters, extracts or archives, patches, and reports on collections of any size on any OS.
15 lines (14 loc) • 576 B
TypeScript
import File from '../files/file.js';
import Patch from './patch.js';
/**
* @see https://winningeleven-games.com/thread-9609-post-29416.html#pid29416
* @see https://github.com/meunierd/ppf/blob/master/ppfdev/PPF3.txt
*/
export default class PPFPatch extends Patch {
static readonly SUPPORTED_EXTENSIONS: string[];
static readonly FILE_SIGNATURE: Buffer<ArrayBuffer>;
static patchFrom(file: File): PPFPatch;
createPatchedFile(inputRomFile: File, outputRomPath: string): Promise<void>;
private static writeOutputFile;
private static applyPatchBlock;
}