Skip to content

h1romas4/noborunoca

Repository files navigation

MSX Game "NOBORUNOCA"

🎮 Let's Play! by WebMSX

📼 YouTube Video

License

MIT License

This project includes all source code and resources.

Special Thanks

Build

Requirements

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

Build

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

See also

Z88DK MSX build template with sample game

https://github.com/h1romas4/z88dk-msx-template