diff options
author | Juan J. Martinez <jjm@usebox.net> | 2020-12-30 19:07:31 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2020-12-30 19:23:41 +0000 |
commit | 2682bc5d1d864341aaeb42a449db73c3ecd16d70 (patch) | |
tree | 9116764364b4ee0ce7f6037305077807b57776de /src/ubox/ubox_read_keys.z80 | |
download | ubox-msx-lib-ca9b663c147340e92804979a96eee4113ab0b27f.tar.gz ubox-msx-lib-ca9b663c147340e92804979a96eee4113ab0b27f.zip |
Initial import1.0
Diffstat (limited to 'src/ubox/ubox_read_keys.z80')
-rw-r--r-- | src/ubox/ubox_read_keys.z80 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ubox/ubox_read_keys.z80 b/src/ubox/ubox_read_keys.z80 new file mode 100644 index 0000000..d32f2de --- /dev/null +++ b/src/ubox/ubox_read_keys.z80 @@ -0,0 +1,10 @@ +.globl _ubox_read_keys + +SNSMAT = 0x0141 + +_ubox_read_keys:: + ld a, l + call SNSMAT + cpl + ld l, a + ret |