]> Joshua Wise's Git repositories - fpgaboy.git/blobdiff - rom.asm
Add files needed for build
[fpgaboy.git] / rom.asm
diff --git a/rom.asm b/rom.asm
index c2b759883eac10bbd2b231f217cc8df3ecafdce6..1504c7199bf681185a2d1d2f8422b4c3909153eb 100644 (file)
--- a/rom.asm
+++ b/rom.asm
        SECTION "a",HOME
 
 main:
-       ld c, $51       ; Note that we are alive.
-       ld a, $FF
-       ld [c],a
-
-       ld sp, $DFFF
-
-       ld hl, signon
-       call puts
+       ld a, $FF       ; Note that we are alive.
+       ld [$FF51],a
        
-       call memtest
-
-       call insntest
-
-       call waitsw
-
-       jp main
-
-signon:
-       db $0D,$0A,$1B,"[1mFPGABoy Diagnostic ROM",$1B,"[0m",$0D,$0A,0
-
-; Memory tester: writes h ^ l to all addresses from C000 to DF80.
-memtest:
-       ld hl,memteststr
-       call puts
+       ld sp, $DFF0
        
-       ld hl, $C000            ; Write loop
-.wr:
-       ld a,h
-       xor l
-       ld [hli],a
-       ld a, $DF
-       cp h
-       jp nz, .wr
+       ld hl, $DF81
        ld a, $80
-       cp l
-       jp nz, .wr
-
-       ld hl, $C000            ; Read loop
-.rd:
-       ld a,h
-       xor l
-       ld b,a
-       ld a, [hli]
-       cp b
-       jp nz, .memfail
+       ld [hl], a
+
+       ld c, $07
+       ld a, $04       ;start timer, 4.096KHz
+       ld [c], a
+;diqs: ei
+;      ld a, $80
+;      ld c, $51
+;      ld [c], a
+;      jr diqs
+       call irqhand
+       ei
+coqs: jr coqs
+
+       section "Diq", HOME[$38]
+fuqed:
+       di
+       jr fuqed
+
+       section "fuq",HOME[$100]
+irqhand:
+       PUSH AF
+       PUSH BC
+       PUSH DE
+       PUSH HL
        
-       ld a, $DF
-       cp h
-       jp nz, .rd
-       ld a, $80
-       cp l
-       jp nz, .rd
+       xor a
+       ld c, $0F       ; ack the irq
+       ld [c], a
        
-       ld hl, testokstr        ; Say we're OK
-       call puts
-       ret
-.memfail:                      ; Say we failed (sadface)
-       ; decrement hl the easy way
-       ld a,[hld]
-       push hl
-       ld hl, failatstr
-       call puts
-       pop hl
-       ld a, h
-       call puthex
-       ld a, l
-       call puthex
-       ld a, $0A
-       call putc
-       ld a, $0D
+       ld a, $41       ; print A
        call putc
-       ret
-memteststr:
-       db "Testing memory from $C000 to $DF80...",0
-testokstr:
-       db " OK!",$0D,$0A,0
-failatstr:
-       db " Test failed at $",0
-
-puthex:                                ; Put two hex nibbles to the serial console.
-       push af
-       rra
-       rra
-       rra
-       rra
-       ld b,$0F
-       and b
-       ld b,$30
-       add b
-       call putc
-       pop af
-       ld b,$0F
-       and b
-       ld b,$30
-       add b
-       call putc
-       ret
-
-; Wait for switches to be flipped on and off again.
-waitsw:
-       ld hl,waitswstr
-       call puts
-       
-       ld c, $51
-       ld a, $00
-       ld [c],a
        
+       ld hl, $DF81
+       inc [hl]
+       ld a, [hl]
        ld c, $51
-       ld b, $0
-.loop1:
-       ld a,[c]
-       cp b
-       jp z,.loop1
-.loop2:
-       ld a,[c]
-       cp b
-       jp nz,.loop2
-       ret
+       ld [c], a
 
-waitswstr:
-       db "Diagnostic ROM complete; flip switches to nonzero and then to zero to reset.",$0D,$0A,0
 
-; Core instruction basic acceptance tests.
-insntest:
-       ld hl, .insnteststr
-       call puts
-       
-       ; Test PUSH and POP.
-       ld b, $12
-       ld c, $34
-       ld d, $56
-       ld e, $78
-       push bc
-       pop de
-       ld hl, .pushpopfail
-       ld a, d
-       cp b
-       jp nz,.fail
-       ld a, e
-       cp c
-       jp nz,.fail
-       
-       ; Test ALU (HL).
-       ld hl, .ff
-       ld a, $FF
-       xor [hl]
-       ld hl, .xorhlfail
-       jp nz, .fail
-       
-       ; Test JP (HL)
-       ld hl, .jphl
-       jp [hl]
-       ld hl, .jphlfail
-       jp .fail
-       rst $00
-.jphl:
+       POP HL
+       POP DE
+       POP BC
+       POP AF
+       RETI
+       db $18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE
+       db $18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE
+       db $18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE,$18,$FE
 
-       ; Test JR
-       ld a, $FF
-       ld b, $00
-       cp b
-       jr nz,.jr
-       ld hl, .jrfail
-       jp .fail
-       rst $00
-.jr:
-       
-       ; Test CP.
-       ld hl, .cpfail
-       ld a, $10
-       ld b, $20
-       cp b
-       jp nc,.fail
-       ld a, $20
-       ld b, $10
-       cp b
-       jp c,.fail
-       
-       ; Test CPL
-       ld hl, .cplfail
-       ld a, $55
-       ld b, $AA
-       cpl
-       cp b
-       jp nz,.fail
-       
-       ld hl, .ok
-       call puts
-       ret
-.fail:
-       call puts
-       ret
-.insnteststr:
-       db "Testing instructions... ",$0
-.pushpopfail:
-       db "PUSH/POP test failed.",$0D,$0A,0
-.ff:
-       db $FF
-.xorhlfail:
-       db "XOR [HL] test failed.",$0D,$0A,0
-.jphlfail:
-       db "JP [HL] test failed.",$0D,$0A,0
-.jrfail:
-       db "JR test failed.",$0D,$0A,0
-.cpfail:
-       db "CP test failed.",$0D,$0A,0
-.cplfail:
-       db "CPL test failed.",$0D,$0A,0
-.ok:
-       db "OK!",$0D,$0A,0
-
-; Serial port manipulation functions.
 putc:
-       push af
        ld b, 0
        ld c, $50
+       push af
 .waitport:
        ld a,[c]
        cp b
-       jp nz,.waitport
+       jr nz,.waitport
        pop af
        ld [c],a
        ret
-
-puts:
-       ld a, [hli]
-       ld b, $00
-       cp b
-       jp z, .done
-       call putc
-       jp puts
-.done:
-       ret
-
This page took 0.029052 seconds and 4 git commands to generate.