diff options
Diffstat (limited to 'asm/atk16.py')
| -rw-r--r-- | asm/atk16.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/asm/atk16.py b/asm/atk16.py new file mode 100644 index 0000000..143dd52 --- /dev/null +++ b/asm/atk16.py @@ -0,0 +1,11 @@ +def atk_store(addr: int, value: int): + return NotImplemented + +def atk_load(addr: int) -> int: + return NotImplemented + +def atk_put_char(c: int): + return NotImplemented + +def atk_enable_text_mode(): + return NotImplemented |
