Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
752 B
JavaScript
22 lines
752 B
JavaScript
//*****************************************************************************
|
|
// PROJECT CONFIG OVERWRITE
|
|
//*****************************************************************************
|
|
|
|
//-- Target MSX machine version (string)
|
|
Machine = "2";
|
|
|
|
//-- Target program format (string)
|
|
Target = "DOS2";
|
|
|
|
//-- Parse MSX-DOS command-line arguments
|
|
DOSParseArg = true;
|
|
|
|
//-- List of library modules to build (array)
|
|
LibModules = [ "dos", "dos_mapper", "string", ...LibModules];
|
|
|
|
//-- List of data files to copy to disk (array)
|
|
DiskFiles = [ "content/img/IMAGE01.SC5", "content/img/IMAGE04.SC5", "content/img/PALETTE.SC5", "content/sample.drv" ];
|
|
|
|
//-- Application ID. Can be 2 character string or 16-bits integer (0~65535)
|
|
AppID = "D2";
|