aboutsummaryrefslogtreecommitdiff
path: root/src/intr.s
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-02-11 13:26:57 -0500
committerB. Watson <urchlay@slackware.uk>2026-02-11 13:26:57 -0500
commitb7b86e3a26d4bfba9c49f0a24ec030a7b3ebd8a3 (patch)
treed2cb7323c78a4983e2a498110a077aaf24d1f696 /src/intr.s
downloadfujinet-chat-b7b86e3a26d4bfba9c49f0a24ec030a7b3ebd8a3.tar.gz
initial commit
Diffstat (limited to 'src/intr.s')
-rw-r--r--src/intr.s7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/intr.s b/src/intr.s
new file mode 100644
index 0000000..00de34f
--- /dev/null
+++ b/src/intr.s
@@ -0,0 +1,7 @@
+ .export _ih
+ .import _trip
+
+_ih: LDA #$01
+ STA _trip
+ PLA
+ RTI