Initial commit: MSXgl 1.4.1 with mazegame project

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-29 22:50:20 +02:00
co-authored by Claude Opus 4.8
commit f3340e86c6
1905 changed files with 633952 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
:: ____________________________
:: ██▀▀█▀▀██▀▀▀▀▀▀▀█▀▀█ │ ▄▄▄ ▄▄
:: ██ ▀ █▄ ▀██▄ ▀ ▄█ ▄▀▀ █ │ ▀█▄ ▄▀██ ▄█▄█ ██▀▄ ██ ▄███
:: █ █ █ ▀▀ ▄█ █ █ ▀▄█ █▄ │ ▄▄█▀ ▀▄██ ██ █ ██▀ ▀█▄ ▀█▄▄
:: ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀────────┘ ▀▀
:: by Guillaume 'Aoineko' Blanchard under CC BY-SA license
::─────────────────────────────────────────────────────────────────────────────
@echo off
::*****************************************************************************
:: PROJECT SETTINGS
::*****************************************************************************
set ARGS=target^=%1 projname^=s_target
:: Project name (will be use for output filename)
if not "%2" == "" set ARGS=%ARGS%_%2
:: Mapper size
if not "%3" == "" set ARGS=%ARGS% romsize^=%3
:: Install BDOS driver for ROM program? (0=false, 1=true)
if "%4" == "BDOS" set ARGS=%ARGS% delay
:: Set RAM in slot 0 and install ISR there (0=false, 1=true)
if "%4" == "RAMISR" set ARGS=%ARGS% ramisr
:: Set RAM in slot 0 and install ISR there (0=false, 1=true)
if "%4" == "RAMSEG" set ARGS=%ARGS% ramseg
cls
..\..\tools\build\Node\node.exe ..\..\engine\script\js\build.js %ARGS% %5 %6 %7 %8 %9