mirror of
https://github.com/MiSTer-devel/Atari800_MiSTer.git
synced 2026-05-24 03:02:55 +00:00
14 lines
478 B
Makefile
14 lines
478 B
Makefile
# This produces the supporting binary data for the Atari800 core,
|
|
# the internal XEX loader and the PBI rom file boot3.rom. The
|
|
# latter should be placed in games/ATARI800 folder of your MiSTer
|
|
# SD card.
|
|
|
|
all: xex_loader.h ../releases/boot3.rom
|
|
|
|
xex_loader.h: xex_loader.asm
|
|
xa xex_loader.asm -o xex_loader.o65 -l xex_loader.lab
|
|
python3 process_xex_loader.py
|
|
rm xex_loader.o65 xex_loader.lab
|
|
|
|
../releases/boot3.rom: pbi_bios.asm
|
|
xa -M -o ../releases/boot3.rom pbi_bios.asm
|