| 422 | } |
| 423 | |
| 424 | void 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 | |
| 435 | void CCompiler::ExportBIN(CSimpleFile &binFile, CSimpleFile &dpcmFile) { |
| 436 | if (!CompileData()) |
no test coverage detected