projects
/
bootcensus
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28d44c4
)
removed leftover debug prints
author
John Tsiombikas
<nuclear@mutantstargoat.com>
Thu, 3 May 2018 23:19:57 +0000
(
02:19
+0300)
committer
John Tsiombikas
<nuclear@mutantstargoat.com>
Thu, 3 May 2018 23:19:57 +0000
(
02:19
+0300)
src/vbe.c
patch
|
blob
|
history
diff --git
a/src/vbe.c
b/src/vbe.c
index
933ffe5
..
3f0f033
100644
(file)
--- 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;
}