Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 lines
852 B
JavaScript
19 lines
852 B
JavaScript
//*****************************************************************************
|
|
// PROJECT CONFIG OVERWRITE
|
|
//*****************************************************************************
|
|
|
|
//-- Target MSX machine version (string)
|
|
Machine = "2";
|
|
|
|
//-- Target program format (string)
|
|
Target = "DOS1";
|
|
|
|
//-- List of library modules to build (array)
|
|
LibModules = [ "dos", "compress", "compress/lz48", "compress/bitbuster", "compress/bitbuster2", "compress/zx0", "compress/pletter", ...LibModules ];
|
|
|
|
//-- List of data files to copy to disk (array)
|
|
DiskFiles = [ "content/zip/data10.bin", "content/zip/data10.rlep", "content/zip/data10.zx0", "content/zip/data10.z48", "content/zip/data10.pck", "content/zip/data10.bb2", "content/zip/data10.pl5" ];
|
|
|
|
//-- Application ID. Can be 2 character string or 16-bits integer (0~65535)
|
|
AppID = "ZP";
|