From b7b86e3a26d4bfba9c49f0a24ec030a7b3ebd8a3 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 11 Feb 2026 13:26:57 -0500 Subject: initial commit --- src/intr.s | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/intr.s (limited to 'src/intr.s') 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 -- cgit v1.2.3