remove some unwanted things
This commit is contained in:
parent
2aa87bb878
commit
2131ccfece
2 changed files with 2 additions and 7 deletions
|
@ -1,5 +1,3 @@
|
||||||
// debug routines for the 64drive, not a real devcart!
|
|
||||||
|
|
||||||
Drive64Write:
|
Drive64Write:
|
||||||
// a0: RAM address to copy from
|
// a0: RAM address to copy from
|
||||||
// a1: length of data to copy in bytes
|
// a1: length of data to copy in bytes
|
||||||
|
|
7
main.asm
7
main.asm
|
@ -24,9 +24,6 @@ include "kernel.asm"
|
||||||
|
|
||||||
Main:
|
Main:
|
||||||
lui s0, BLAH_BASE
|
lui s0, BLAH_BASE
|
||||||
mfc0 t1, CP0_Status
|
|
||||||
sw t1, 8(s0)
|
|
||||||
|
|
||||||
nop; nop; nop; nop
|
nop; nop; nop; nop
|
||||||
mfc0 t0, CP0_Count
|
mfc0 t0, CP0_Count
|
||||||
sw t0, BLAH_COUNTS+0(s0)
|
sw t0, BLAH_COUNTS+0(s0)
|
||||||
|
@ -145,9 +142,9 @@ KSL(SNewFrame, "next frame")
|
||||||
|
|
||||||
SetupScreen:
|
SetupScreen:
|
||||||
if HICOLOR {
|
if HICOLOR {
|
||||||
ScreenNTSC(WIDTH, HEIGHT, BPP32|INTERLACE|AA_MODE_2|PIXEL_ADV_3, VIDEO_C_BUFFER | UNCACHED)
|
ScreenNTSC(WIDTH, HEIGHT, BPP32|INTERLACE|AA_MODE_2, VIDEO_C_BUFFER | UNCACHED)
|
||||||
} else {
|
} else {
|
||||||
ScreenNTSC(WIDTH, HEIGHT, BPP16|AA_MODE_2|PIXEL_ADV_3, VIDEO_C_BUFFER | UNCACHED)
|
ScreenNTSC(WIDTH, HEIGHT, BPP16|AA_MODE_2, VIDEO_C_BUFFER | UNCACHED)
|
||||||
}
|
}
|
||||||
jr ra
|
jr ra
|
||||||
nop
|
nop
|
||||||
|
|
Loading…
Add table
Reference in a new issue