summaryrefslogtreecommitdiff
path: root/src/vga.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vga.c')
-rw-r--r--src/vga.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/vga.c b/src/vga.c
index 609b831..1b8dde4 100644
--- a/src/vga.c
+++ b/src/vga.c
@@ -186,15 +186,6 @@ void vga_put_string( vga_t *vga, const char *s )
}
}
-void vga_put_hex( vga_t *vga, const uint32_t v )
-{
- char buf[19];
-
- vga_put_string( vga, "0x" );
- itoa( v, (char *)buf, 16 );
- vga_put_string( vga, (const char *)buf );
-}
-
void vga_put_newline( vga_t *vga )
{
vga->cursor_x = 0;