]> Joshua Wise's Git repositories - fpgaboy.git/blobdiff - rom.asm
RETCC that breaks everything. Why?
[fpgaboy.git] / rom.asm
diff --git a/rom.asm b/rom.asm
index c2b759883eac10bbd2b231f217cc8df3ecafdce6..aa070ff2c0f33633af42231b746e09b771c53e0a 100644 (file)
--- a/rom.asm
+++ b/rom.asm
@@ -16,7 +16,7 @@ main:
 
        call waitsw
 
 
        call waitsw
 
-       jp main
+       jr main
 
 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
@@ -33,10 +33,10 @@ memtest:
        ld [hli],a
        ld a, $DF
        cp h
        ld [hli],a
        ld a, $DF
        cp h
-       jp nz, .wr
+       jr nz, .wr
        ld a, $80
        cp l
        ld a, $80
        cp l
-       jp nz, .wr
+       jr nz, .wr
 
        ld hl, $C000            ; Read loop
 .rd:
 
        ld hl, $C000            ; Read loop
 .rd:
@@ -45,14 +45,14 @@ memtest:
        ld b,a
        ld a, [hli]
        cp b
        ld b,a
        ld a, [hli]
        cp b
-       jp nz, .memfail
+       jr nz, .memfail
        
        ld a, $DF
        cp h
        
        ld a, $DF
        cp h
-       jp nz, .rd
+       jr nz, .rd
        ld a, $80
        cp l
        ld a, $80
        cp l
-       jp nz, .rd
+       jr nz, .rd
        
        ld hl, testokstr        ; Say we're OK
        call puts
        
        ld hl, testokstr        ; Say we're OK
        call puts
@@ -113,11 +113,11 @@ waitsw:
 .loop1:
        ld a,[c]
        cp b
 .loop1:
        ld a,[c]
        cp b
-       jp z,.loop1
+       jr z,.loop1
 .loop2:
        ld a,[c]
        cp b
 .loop2:
        ld a,[c]
        cp b
-       jp nz,.loop2
+       jr nz,.loop2
        ret
 
 waitswstr:
        ret
 
 waitswstr:
@@ -138,23 +138,23 @@ insntest:
        ld hl, .pushpopfail
        ld a, d
        cp b
        ld hl, .pushpopfail
        ld a, d
        cp b
-       jp nz,.fail
+       jr nz,.fail
        ld a, e
        cp c
        ld a, e
        cp c
-       jp nz,.fail
+       jr nz,.fail
        
        ; Test ALU (HL).
        ld hl, .ff
        ld a, $FF
        xor [hl]
        ld hl, .xorhlfail
        
        ; Test ALU (HL).
        ld hl, .ff
        ld a, $FF
        xor [hl]
        ld hl, .xorhlfail
-       jp nz, .fail
+       jr nz, .fail
        
        ; Test JP (HL)
        ld hl, .jphl
        jp [hl]
        ld hl, .jphlfail
        
        ; Test JP (HL)
        ld hl, .jphl
        jp [hl]
        ld hl, .jphlfail
-       jp .fail
+       jr .fail
        rst $00
 .jphl:
 
        rst $00
 .jphl:
 
@@ -164,7 +164,7 @@ insntest:
        cp b
        jr nz,.jr
        ld hl, .jrfail
        cp b
        jr nz,.jr
        ld hl, .jrfail
-       jp .fail
+       jr .fail
        rst $00
 .jr:
        
        rst $00
 .jr:
        
@@ -173,11 +173,11 @@ insntest:
        ld a, $10
        ld b, $20
        cp b
        ld a, $10
        ld b, $20
        cp b
-       jp nc,.fail
+       jr nc,.fail
        ld a, $20
        ld b, $10
        cp b
        ld a, $20
        ld b, $10
        cp b
-       jp c,.fail
+       jr c,.fail
        
        ; Test CPL
        ld hl, .cplfail
        
        ; Test CPL
        ld hl, .cplfail
@@ -185,30 +185,34 @@ insntest:
        ld b, $AA
        cpl
        cp b
        ld b, $AA
        cpl
        cp b
-       jp nz,.fail
+       jr nz,.fail
        
        ld hl, .ok
        call puts
        ret
 .fail:
        
        ld hl, .ok
        call puts
        ret
 .fail:
+       call puts
+       ld hl, .testfailed
        call puts
        ret
 .insnteststr:
        call puts
        ret
 .insnteststr:
-       db "Testing instructions... ",$0
+       db "Testing instructions... ",0
 .pushpopfail:
 .pushpopfail:
-       db "PUSH/POP test failed.",$0D,$0A,0
+       db "PUSH/POP",0
 .ff:
        db $FF
 .xorhlfail:
 .ff:
        db $FF
 .xorhlfail:
-       db "XOR [HL] test failed.",$0D,$0A,0
+       db "XOR [HL]",0
 .jphlfail:
 .jphlfail:
-       db "JP [HL] test failed.",$0D,$0A,0
+       db "JP [HL]",0
 .jrfail:
 .jrfail:
-       db "JR test failed.",$0D,$0A,0
+       db "JR",0
 .cpfail:
 .cpfail:
-       db "CP test failed.",$0D,$0A,0
+       db "CP",0
 .cplfail:
 .cplfail:
-       db "CPL test failed.",$0D,$0A,0
+       db "CPL",0
+.testfailed:
+       db "test failed.",$0D,$0A,0
 .ok:
        db "OK!",$0D,$0A,0
 
 .ok:
        db "OK!",$0D,$0A,0
 
@@ -220,7 +224,7 @@ putc:
 .waitport:
        ld a,[c]
        cp b
 .waitport:
        ld a,[c]
        cp b
-       jp nz,.waitport
+       jr nz,.waitport
        pop af
        ld [c],a
        ret
        pop af
        ld [c],a
        ret
@@ -229,9 +233,9 @@ puts:
        ld a, [hli]
        ld b, $00
        cp b
        ld a, [hli]
        ld b, $00
        cp b
-       jp z, .done
+       jr z, .done
        call putc
        call putc
-       jp puts
+       jr puts
 .done:
        ret
 .done:
        ret
-
+       
This page took 0.029331 seconds and 4 git commands to generate.