Reorganized project

This commit is contained in:
Kyler 2024-02-25 20:30:57 -07:00
parent 02dbbd9040
commit 16ebe02c56
9 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.ods#
docs/*.pdf
__pycache__
bin

10
pytd12dk/__init__.py Normal file
View File

@ -0,0 +1,10 @@
# Kyler Olsen
# Feb 2024
from . import emulator, assembler, compiler
__all__ = [
'emulator',
'assembler',
'compiler',
]