]> Joshua Wise's Git repositories - fpgaboy.git/commitdiff
Test interrupts. They work!
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Sat, 5 Apr 2008 04:56:08 +0000 (00:56 -0400)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Sat, 5 Apr 2008 04:56:08 +0000 (00:56 -0400)
FPGABoy.ise
rom.asm

index 3562e2939347135378f2138caa6b9fb7e0726134..7ef4156167ad5f7bf685c02e058026229cb6c003 100644 (file)
Binary files a/FPGABoy.ise and b/FPGABoy.ise differ
diff --git a/rom.asm b/rom.asm
index 7994d3ea2f7103a0a4e4cde108642f7537ad52b0..437f01e5c5e036687992cf8a7ea646588eb7695d 100644 (file)
--- a/rom.asm
+++ b/rom.asm
@@ -9,15 +9,38 @@ main:
 
        ld hl, signon
        call puts
 
        ld hl, signon
        call puts
+
+       ld c, $07
+       ld a, $04       ;start timer, 4.096KHz
+       ld [c], a
+       ei
        
        call memtest
 
        call insntest
 
        call waitsw
        
        call memtest
 
        call insntest
 
        call waitsw
+       di
 
        jr main
 
 
        jr main
 
+       section "fuq",HOME[$100]
+irqhand:
+       PUSH AF
+       PUSH BC
+       PUSH DE
+       PUSH HL
+       xor a
+       ld c, $0F       ; ack the irq
+       ld [c], a
+       ld a, $41       ; print A
+       call putc
+       POP HL
+       POP DE
+       POP BC
+       POP AF
+       RETI
+
 signon:
        db $0D,$0A,$1B,"[1mFPGABoy Diagnostic ROM",$1B,"[0m",$0D,$0A,0
 
 signon:
        db $0D,$0A,$1B,"[1mFPGABoy Diagnostic ROM",$1B,"[0m",$0D,$0A,0
 
@@ -103,23 +126,13 @@ puthex:                           ; Put two hex nibbles to the serial console.
 waitsw:
        ld hl,waitswstr
        call puts
 waitsw:
        ld hl,waitswstr
        call puts
-       
-       ld c, $07
-       ld a, $04       ;start timer, 4.096KHz
-       ld [c], a
-       
+
        ld c, $51
        ld c, $51
-       ld a, $00
+       xor a
        ld [c],a
        
        ld [c],a
        
-       ld e, a
-       
-.loop1:
-       push bc
-       call testa
-       pop bc
-       ld c, $51
        ld b, $0
        ld b, $0
+.loop1:
        ld a,[c]
        cp b
        jr z,.loop1
        ld a,[c]
        cp b
        jr z,.loop1
@@ -132,23 +145,6 @@ waitsw:
 waitswstr:
        db "Diagnostic ROM complete; flip switches to nonzero and then to zero to reset. Expect A.",$0D,$0A,0
 
 waitswstr:
        db "Diagnostic ROM complete; flip switches to nonzero and then to zero to reset. Expect A.",$0D,$0A,0
 
-testa:
-       ld c, $0F
-       ld a, [c]
-       ld b, $00
-       cp b
-       ret z
-       xor a
-       ld [c], a
-       ld a, $41
-       call putc
-       ld a, 1
-       add e
-       ld c, $51
-       ld [c], a
-       ld e, a
-       ret
-
 ; Core instruction basic acceptance tests.
 insntest:
        ld hl, .insnteststr
 ; Core instruction basic acceptance tests.
 insntest:
        ld hl, .insnteststr
This page took 0.03044 seconds and 4 git commands to generate.