* WIP Adding Atari800 side of things * WIP Migrated some functionality from .sv to here * WIP XEX file loading works, clean-ups * WIP UART/SIO interface beginning * WIP Adding Atari800 drive emulator * WIP First version of the drive emulator working with ATR and XEX files * WIP ATX files are working * WIP HDD is now mounted separately * WIP PBI/HDD is working too * Cleaning up and adding supporting Atari ASM files * Updated versioning information in the Atari800 FW * WIP Adding support for the Atari 5200 core * Atari 5200 support complete * Atari800: fixed SIO timing bugs * Atari800: sorting out SIO timing issues still * Atari800: eliminate OSD lock up possibilities * Atari800: Improved XEX loader
15 lines
468 B
Makefile
15 lines
468 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 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
|
|
mv xex_loader.h ..
|
|
|
|
boot3.rom: pbi_bios.asm
|
|
xa -M -o boot3.rom pbi_bios.asm
|