ytd_12-bit_computer/pytd12dk/emulator/__init__.py

10 lines
110 B
Python

# Kyler Olsen
# Feb 2024
from .emulator import Computer, Memory
__all__ = [
'Computer',
'Memory',
]