initial prototype
This commit is contained in:
commit
6c298e1b0d
9 changed files with 2371 additions and 0 deletions
10
architectds/__init__.py
Normal file
10
architectds/__init__.py
Normal 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
|
2117
architectds/architectds.py
Normal file
2117
architectds/architectds.py
Normal file
File diff suppressed because it is too large
Load diff
18
architectds/license.txt
Normal file
18
architectds/license.txt
Normal file
|
@ -0,0 +1,18 @@
|
|||
Copyright (c) 2024 Antonio Niño Díaz <antonio_nd@outlook.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
Loading…
Add table
Add a link
Reference in a new issue