Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
772 B
JavaScript
22 lines
772 B
JavaScript
//*****************************************************************************
|
|
// PROJECT CONFIG OVERWRITE
|
|
//*****************************************************************************
|
|
|
|
//-- Target MSX machine version (string)
|
|
Machine = "1";
|
|
|
|
//-- List of library modules to build (array)
|
|
LibModules = [ "bios", "system", "vdp", "print", "input", "memory" ];
|
|
|
|
//-- Target program format (string)
|
|
Target = "ROM_ASCII8";
|
|
|
|
//-- ROM mapper total size in KB (number). Must be a multiple of 8 or 16 depending on the mapper type (from 64 to 4096)
|
|
ROMSize = 128;
|
|
|
|
//-- Use automatic banked call and trampoline functions (boolean). For mapped ROM
|
|
BankedCall = true;
|
|
|
|
//-- Application ID. Can be 2 character string or 16-bits integer (0~65535)
|
|
AppID = "MP";
|