MCPcopy Create free account
hub / github.com/HertzDevil/0CC-FamiTracker / ExportPRG

Method ExportPRG

Source/Compiler.cpp:424–433  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

422}
423
424void CCompiler::ExportPRG(CSimpleFile &file, bool EnablePAL) {
425 // Same as export to .NES but without the header
426 if (m_pModule->HasExpansionChips()) {
427 Print("Error: Expansion chips are currently not supported for this export format.\n");
428 return;
429 }
430 if (!CompileData())
431 return;
432 ExportNES_PRG(file, EnablePAL, true); // // //
433}
434
435void CCompiler::ExportBIN(CSimpleFile &binFile, CSimpleFile &dpcmFile) {
436 if (!CompileData())

Callers 2

CreatePRGMethod · 0.80
CommandLineExportMethod · 0.80

Calls 1

HasExpansionChipsMethod · 0.80

Tested by

no test coverage detected