From 2ad37441d313110d3a206f87a9ce9609dcaa8eb0 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 6 May 2008 19:49:01 -0400 Subject: Minor cleanups. Several minor comment improvements. Rearrange some definitions to make them more clear. --- src/output.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/output.c') diff --git a/src/output.c b/src/output.c index 3d53613..fc77c21 100644 --- a/src/output.c +++ b/src/output.c @@ -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'); -- cgit v1.1