diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2023-11-04 20:56:54 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2023-11-06 14:01:09 +0200 |
| commit | 7309d563c6661f6e17c1ed3577b40b9646a85bb4 (patch) | |
| tree | a1c483744fe3592c7f6ab20e618ee8a52f0bebdb /asm/atk16.py | |
| parent | c28c5320a4084c1c728c10ec35196630e35d94db (diff) | |
wip compiler
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 |
