shithub: riscv

Download patch

ref: 34f7e4ef9a9e9edafe94317f5e0ec05b6e6477bc
parent: de0712c0b50df4339f6f79dd4e01aa2433c74e0c
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Feb 3 21:08:26 EST 2014

pc64: remove cinaps cga screen interrupt debugger, was experiment...

--- a/sys/src/9/pc64/trap.c
+++ b/sys/src/9/pc64/trap.c
@@ -313,18 +313,6 @@
 }
 
 void
-display(char *s)
-{
-	char *d;
-
-	d = (char*)KADDR(0xB8000);
-	while(*s){
-		*d = *s++;
-		d += 2;
-	}
-}
-
-void
 trap(Ureg *ureg)
 {
 	int clockintr, i, vno, user;
--