Displaying 1 result from an estimated 1 matches for "get_e801".
2009 Sep 12
1
[PATCH] Let MEMDISK honor the quiet append option
...emset(®s, 0, sizeof regs);
intcall(0x12, ®s, ®s);
insertrange(0, (uint64_t) ((uint32_t) regs.eax.w[0] << 10), 1);
- printf(" DOS: %d K\n", regs.eax.w[0]);
+ if (!quiet)
+ printf(" DOS: %d K\n", regs.eax.w[0]);
}
static inline int get_e801(void)
@@ -101,7 +102,8 @@
1);
}
- printf("e801: %04x %04x\n", regs.eax.w[0], regs.ebx.w[0]);
+ if (!quiet)
+ printf("e801: %04x %04x\n", regs.eax.w[0], regs.ebx.w[0]);
}
return err;
@@ -123,7 +125,8 @@
1);
}
- p...