From 105da4a7b7c8563996a97bfb9895fa87d819bf56 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Fri, 4 May 2018 02:19:57 +0300 Subject: [PATCH] removed leftover debug prints --- src/vbe.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/vbe.c b/src/vbe.c index 933ffe5..3f0f033 100644 --- a/src/vbe.c +++ b/src/vbe.c @@ -16,8 +16,6 @@ struct vbe_info *vbe_get_info(void) struct vbe_info *info; struct int86regs regs; - printf("vbe_get_info... "); - info = (struct vbe_info*)low_mem_buffer; memcpy(info->sig, "VBE2", 4); @@ -27,8 +25,6 @@ struct vbe_info *vbe_get_info(void) regs.eax = 0x4f00; int86(0x10, ®s); - printf("status: %d\n", (regs.eax >> 8) & 0xff); - if((regs.eax & 0xffff) != 0x4f) { return 0; } -- 1.7.10.4