@rem -------------------------------------------------------------------- @rem build.bat — Mad-Pascal, Chapter 1 of the Atari Legacy course @rem Wojciech "Bocianu" Bocianski, Atari Legacy Issue 01 (Fig. 5) @rem @rem Transcribed by the editorial team from the printed listing. @rem Adjust the four paths below to wherever you unpacked the tools. @rem -------------------------------------------------------------------- @setlocal @SET MP_BIN=D:\atari\Mad-Pascal\bin\windows\mp.exe @SET MADS_BIN=D:\atari\Mad-Assembler\bin\windows_x86_64\mads.exe @SET MP_BASE=D:\atari\Mad-Pascal\base @SET ALTIRRA_BIN=D:\atari\Altirra\altirra64.exe @SET NAME=hello %MP_BIN% %NAME%.pas @if %ERRORLEVEL% == 0 %MADS_BIN% %NAME%.a65 -x -i:%MP_BASE% -o:%NAME%.xex @if %ERRORLEVEL% == 0 %ALTIRRA_BIN% %NAME%.xex