MIT License
This project includes all source code and resources.
- Z88DK - The Development Kit for Z80 Computers - Compiler and toolchain
- Lovely Composer - Music sequencer
- @aburi6800 - MSX sound driver and converter
- MAME - Emulator
- openMSX - Emulator
- C-BIOS - MSX open-source BIOS
- Ubuntu 24.04 LTS or Ubuntu 22.04 LTS or Windows WSL2
- Z88DK v2.4
- cmake (
sudo apt install cmake)
Set environment variables in ~/.bashrc:
# z88dk
export Z88DK_HOME=/home/hiromasa/devel/msx/z88dk
export ZCCCFG=${Z88DK_HOME}/lib/config
export PATH=${Z88DK_HOME}/bin:${PATH}
Verify
$ which zcc
/home/hiromasa/devel/msx/z88dk/bin/zcc
$ ls -laF ${ZCCCFG}/msx.cfg
-rw-rw-r-- 1 hiromasa hiromasa 1627 12月 22 20:18 /home/hiromasa/devel/msx/z88dk/lib/config/msx.cfg
$ zcc 2>&1 | head -5
zcc - Frontend for the z88dk Cross-C Compiler - v23854-4d530b6eb7-20251222
Usage: zcc +[target] {options} {files}
-v -verbose Output all commands that are run (-vn suppresses)
-h -help Display this text
Compile
cmake -S . -B build
cmake --build build
Verify
ls -laF ./dist/*.rom
-rw-rw-r-- 1 hiromasa hiromasa 32768 12月 23 17:07 ./dist/noborunoca.rom
Z88DK MSX build template with sample game
