Minor cleanups.
[seabios.git] / src / output.c
index 3d5361366ef69fcee78ea99a4af89c1508ff08c8..fc77c214899c91e7e39f0c58ab2515ceb9591a31 100644 (file)
@@ -20,14 +20,11 @@ screenc(u8 c)
     call16_int(0x10, &br);
 }
 
-// XXX - move PORT_DEBUG to standard place?
-#define PORT_DEBUG  0x403
-
 // Write a charcter to the framebuffer.
 static void
 putc(u16 action, char c)
 {
-    outb(c, PORT_DEBUG);
+    outb(c, PORT_BIOS_DEBUG);
     if (action) {
         if (c == '\n')
             screenc('\r');