Skip to content

h1romas4/noborunoca

Repository files navigation

MSX Game "NOBORUNOCA"

🎮 Let's Play! by WebMSX

📼 YouTube Video

License

MIT License

Includes all source code and resources.

Special Thanks

Build

Require

  • Ubuntu 20.04 LTS or Ubuntu 22.04 LTS or Windows WSL2
  • Setup Z88DK
  • cmake (sudo apt install cmake)

Set enviroments on ~/.bashrc

# z88dk
export Z88DK_HOME=/home/hiromasa/devel/msx/z88dk
export ZCCCFG=${Z88DK_HOME}/lib/config
export PATH=${Z88DK_HOME}/bin:${PATH}

Verifiy

$ which zcc
/home/hiromasa/devel/msx/z88dk/bin/zcc
$ ls -laF ${ZCCCFG}/msx.cfg
-rw-rw-r-- 1 hiromasa hiromasa 1035  9月  1 12:10 /home/hiromasa/devel/msx/z88dk/lib/config/msx.cfg
$ zcc 2>&1 | head -5
zcc - Frontend for the z88dk Cross-C Compiler - v18586-be7c8763a-20210901

Usage: zcc +[target] {options} {files}
   -v -verbose                  Output all commands that are run (-vn suppresses)
   -h -help                     Display this text

Build

Compile

mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/z88dk.cmake ..
make

Verifiy

ls -laF ../dist/*.rom
-rw-rw-r-- 1 hiromasa hiromasa  16384  9月  3 18:13 noborunoca.rom

See also

Z88DK MSX build template with sample game

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