]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/irq.s
Some small first changes for the 'atarixl' target.
[cc65] / libsrc / atari / irq.s
index 543e9c0b43a058418a14aba0333df223964d57db..9a433ca003d8cf93ac688f63225bda2999b75288 100644 (file)
@@ -2,48 +2,48 @@
 ; IRQ handling (ATARI version)
 ;
 
-       .export         initirq, doneirq
-       .import         callirq
+        .export         initirq, doneirq
+        .import         callirq
 
-       .include        "atari.inc"
+        .include        "atari.inc"
 
 ; ------------------------------------------------------------------------
 
-.segment       "INIT"
+.segment        "INIT"
 
 initirq:
-       lda     VVBLKI
-       ldx     VVBLKI+1
-       sta     IRQInd+1
-       stx     IRQInd+2
-       lda     #6
-       ldy     #<IRQStub
-       ldx     #>IRQStub
-       jsr     SETVBV
-       rts
+        lda     VVBLKI
+        ldx     VVBLKI+1
+        sta     IRQInd+1
+        stx     IRQInd+2
+        lda     #6
+        ldy     #<IRQStub
+        ldx     #>IRQStub
+        jsr     SETVBV
+        rts
 
 ; ------------------------------------------------------------------------
 
 .code
 
 doneirq:
-       lda     #6
-       ldy     IRQInd+1
-       ldx     IRQInd+2
-       jsr     SETVBV
-       rts
+        lda     #6
+        ldy     IRQInd+1
+        ldx     IRQInd+2
+        jsr     SETVBV
+        rts
 
 ; ------------------------------------------------------------------------
 
-.segment       "LOWCODE"
+.segment        "LOWCODE"
 
 IRQStub:
-       cld                             ; Just to be sure
-       jsr     callirq                 ; Call the functions
-       jmp     IRQInd                  ; Jump to the saved IRQ vector
+        cld                             ; Just to be sure
+        jsr     callirq                 ; Call the functions
+        jmp     IRQInd                  ; Jump to the saved IRQ vector
 
 ; ------------------------------------------------------------------------
 
 .data
 
-IRQInd: jmp    $0000
+IRQInd: jmp     $0000