mirror of
https://github.com/AntonioND/architectds.git
synced 2025-06-18 16:45:32 -04:00
22 lines
359 B
Python
22 lines
359 B
Python
#!/usr/bin/env python3
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
#
|
|
# SPDX-FileContributor: Antonio Niño Díaz, 2024
|
|
|
|
from architectds import *
|
|
|
|
arm9 = Arm9Binary(
|
|
sourcedirs=['source'],
|
|
)
|
|
arm9.add_grit(['graphics'])
|
|
arm9.generate_elf()
|
|
|
|
nds = NdsRom(
|
|
binaries=[arm9],
|
|
game_title='OpenGL example',
|
|
)
|
|
nds.generate_nds()
|
|
|
|
nds.run_command_line_arguments()
|