initial prototype

This commit is contained in:
Haze Weathers 2024-12-26 03:34:11 -05:00
commit 6c298e1b0d
9 changed files with 2371 additions and 0 deletions

10
architectds/__init__.py Normal file
View file

@ -0,0 +1,10 @@
# SPDX-License-Identifier: MIT
#
# Copyright (c) 2024 Antonio Niño Díaz <antonio_nd@outlook.com>
from .architectds import (Arm9Binary, Arm7Binary, TeakBinary, NitroFS, FatFS,
NdsRom, AUTHOR_STRING, VERSION_STRING)
__all__ = ['Arm9Binary', 'Arm7Binary', 'TeakBinary', 'NitroFS', 'FatFS', 'NdsRom']
__author__ = AUTHOR_STRING
__version__ = VERSION_STRING