summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/ppcn_60x/console/vga.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/powerpc/ppcn_60x/console/vga.c')
-rw-r--r--c/src/lib/libbsp/powerpc/ppcn_60x/console/vga.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/c/src/lib/libbsp/powerpc/ppcn_60x/console/vga.c b/c/src/lib/libbsp/powerpc/ppcn_60x/console/vga.c
index ca93acb48d..16b30e1eda 100644
--- a/c/src/lib/libbsp/powerpc/ppcn_60x/console/vga.c
+++ b/c/src/lib/libbsp/powerpc/ppcn_60x/console/vga.c
@@ -38,7 +38,6 @@
| **************************************************************************
+--------------------------------------------------------------------------*/
-
#include <bsp.h>
#include <stdlib.h>
@@ -72,7 +71,6 @@ static uint8_t videoCols = VGA_NUM_COLS; /* Number of columns in display. */
static uint8_t cursRow = 0; /* Current cursor row. */
static uint8_t cursCol = 0; /* Current cursor column. */
-
/*-------------------------------------------------------------------------+
| Function: setHardwareCursorPos
| Description: Set hardware video cursor at given offset into video RAM.
@@ -87,7 +85,6 @@ setHardwareCursorPos(uint16_t videoCursor)
VGA_WRITE_CRTC(0x0f, videoCursor & 0xff);
} /* setHardwareCursorPos */
-
/*-------------------------------------------------------------------------+
| Function: updateVideoRamPtr
| Description: Updates value of global variable "videoRamPtr" based on
@@ -102,7 +99,6 @@ updateVideoRamPtr(void)
videoRamPtr = videoRam + cursRow * videoCols + cursCol;
} /* updateVideoRamPtr */
-
/*-------------------------------------------------------------------------+
| Function: scrollUp
| Description: Scrolls display up n lines.
@@ -153,7 +149,6 @@ scrollUp(uint8_t lines)
}
} /* scrollUp */
-
/*-------------------------------------------------------------------------+
| Function: printCHAR
| Description: Print printable character to display.
@@ -208,7 +203,6 @@ printBS(void)
*(--videoRamPtr) = BLANK;
} /* printBS */
-
/*-------------------------------------------------------------------------+
| Function: printHT
| Description: Print HT (Horizontal Tab - '\t') character to display.
@@ -226,7 +220,6 @@ printHT(void)
while (cursCol % TABSIZE);
} /* printHT */
-
/*-------------------------------------------------------------------------+
| Function: printLF
| Description: Print LF (Line Feed - '\n') character to display.
@@ -246,7 +239,6 @@ printLF(void)
updateVideoRamPtr();
} /* printLF */
-
/*-------------------------------------------------------------------------+
| Function: printCR
| Description: Print CR (Carriage Return - '\r') to display.