diff options
Diffstat (limited to 'src/intr.s')
| -rw-r--r-- | src/intr.s | 7 |
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 |
