initial prototype
This commit is contained in:
commit
6c298e1b0d
9 changed files with 2371 additions and 0 deletions
25
build.py
Executable file
25
build.py
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from architectds import *
|
||||
|
||||
nitrofs = NitroFS()
|
||||
nitrofs.add_nflib_sprite_3d(['res/sprite'], 'sprite')
|
||||
nitrofs.generate_image()
|
||||
|
||||
arm9 = Arm9Binary(
|
||||
sourcedirs=['src'],
|
||||
libs=['nds9', 'nflib'],
|
||||
libdirs=['${BLOCKSDS}/libs/libnds', '${BLOCKSDSEXT}/nflib']
|
||||
)
|
||||
arm9.generate_elf()
|
||||
|
||||
nds = NdsRom(
|
||||
binaries=[arm9, nitrofs],
|
||||
nitrofsdirs=['res/data'],
|
||||
game_title='Uncanny Cat Golf',
|
||||
game_subtitle='Cat Golf On The Go',
|
||||
game_author='SH2K + Fogwaves',
|
||||
)
|
||||
nds.generate_nds()
|
||||
|
||||
nds.run_command_line_arguments()
|
Loading…
Add table
Add a link
Reference in a new issue