From 2131ccfecebfe941608fbfac9914542050a1ea24 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Fri, 24 Aug 2018 23:34:59 +0200 Subject: [PATCH] remove some unwanted things --- debug.asm | 2 -- main.asm | 7 ++----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/debug.asm b/debug.asm index 2c85b21..4e3ff5f 100644 --- a/debug.asm +++ b/debug.asm @@ -1,5 +1,3 @@ -// debug routines for the 64drive, not a real devcart! - Drive64Write: // a0: RAM address to copy from // a1: length of data to copy in bytes diff --git a/main.asm b/main.asm index 5523ff1..90c478d 100644 --- a/main.asm +++ b/main.asm @@ -24,9 +24,6 @@ include "kernel.asm" Main: lui s0, BLAH_BASE - mfc0 t1, CP0_Status - sw t1, 8(s0) - nop; nop; nop; nop mfc0 t0, CP0_Count sw t0, BLAH_COUNTS+0(s0) @@ -145,9 +142,9 @@ KSL(SNewFrame, "next frame") SetupScreen: 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 { - 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 nop