-
Notifications
You must be signed in to change notification settings - Fork 7
How to build
dgrfactory edited this page Dec 3, 2023
·
11 revisions
Required software for build:
- Borland Delphi 6 UP2 RTL3
Build commands:
brcc32.exe -l 0x411 -d "NDEBUG" -fo spcplay.res spcplay.rc
dcc32.exe spcplay.dpr
Required software for build:
- Free Pascal 3.2.2 (Intel x86/i386)
Build commands:
windres.exe -l 0x411 -D "NDEBUG" -i spcplay.rc -o spcplay.res
fpc.exe -dFREEPASCAL -Mdelphi -Pi386 -Twin32 -vewin -ospcplay.exe spcplay.dpr
strip.exe -s -x spcplay.exe
Required software for build:
- Microsoft Visual C++ 6.0 Service Pack 6
- Netwide Assembler 2.10.09
Build commands:
mkdir Release
nasm.exe -D WIN32 -D STDCALL -O2 -w-macro-params -f win32 -o Release\SPC700.obj SPC700.asm
nasm.exe -D WIN32 -D STDCALL -O2 -w-macro-params -f win32 -o Release\DSP.obj DSP.asm
nasm.exe -D WIN32 -D STDCALL -O2 -w-macro-params -f win32 -o Release\APU.obj APU.asm
rc.exe /l 0x411 /d "NDEBUG" /fo Release\version.res version.rc
cl.exe @option\snesapu-cl.txt
link.exe @option\snesapu-link.txt
For 3rd-party players:
copy /y thirdparty\* .
: (nasm, rc, cl)
link.exe @option\snesapu-3rd-link.txt
Required software for build:
- Borland Delphi 6 UP2 RTL3
Build commands:
brcc32.exe -l 0x411 -d "NDEBUG" -fo spccmd.res spccmd.rc
dcc32.exe spccmd.dpr