aboutsummaryrefslogtreecommitdiffstats
path: root/resources/py/test_py_src.py
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2024-02-20 16:55:14 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2024-02-20 16:56:09 +0200
commit549901c85044b6ccd912688d6be007c2fdacc6c6 (patch)
tree15d1123eedb4347472e4b47fec880e2e5b79927e /resources/py/test_py_src.py
parentabf0594c78087434bced59054896f7f411e18faf (diff)
Refactor dir structure
Diffstat (limited to 'resources/py/test_py_src.py')
-rw-r--r--resources/py/test_py_src.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/resources/py/test_py_src.py b/resources/py/test_py_src.py
new file mode 100644
index 0000000..619d22e
--- /dev/null
+++ b/resources/py/test_py_src.py
@@ -0,0 +1,36 @@
+# TODO: actual imports, not just `import atk16`
+from atk16 import *
+
+GRAPHICS_NO_MODE: ConstWord16 = 0
+GRAPHICS_TEXT_MODE: ConstWord16 = 1
+GRAPHICS_SPRITE_MODE: ConstWord16 = 2
+
+GRAPHICS_MODE_PP: ConstWord16 = 0x17
+TEXT_MEM_PP: ConstWord16 = 0x19
+
+TEXT_MEM_PP: ConstWord16 = 0x19
+
+# asm(
+# "@label keyboard_isr"
+# " spu RA"
+
+# " spo RA"
+# )
+
+# set_isr(0, "keyboard_isr")
+
+graphics_mode_p = load(GRAPHICS_MODE_PP)
+text_mem_p = load(TEXT_MEM_PP)
+
+store(graphics_mode_p, GRAPHICS_TEXT_MODE)
+
+def nth_letter(n: int) -> int:
+ return ord('A') + n
+
+i = 0
+while i < 26:
+ store(text_mem_p + i, nth_letter(i))
+ i += 1
+
+while True:
+ pass