summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhpa <hpa>2004-02-02 22:43:13 +0000
committerhpa <hpa>2004-02-02 22:43:13 +0000
commit5441e9fac2d1ff40f2363ed12d31f5eb1ef0e8ec (patch)
tree42e7e7163583dd848198e0ac95e4b9a07fbf6bf7
parentdda2dffd01825eab5c6fc9e59c150d31dd16ccdf (diff)
downloadsyslinux-5441e9fac2d1ff40f2363ed12d31f5eb1ef0e8ec.tar.gz
Clobber of ebx is implicit since %bh is output
-rw-r--r--menu/biosio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/menu/biosio.c b/menu/biosio.c
index dcc806ba..faa63c96 100644
--- a/menu/biosio.c
+++ b/menu/biosio.c
@@ -68,7 +68,7 @@ static inline char asm_getdisppage(void)
{
register char page asm("%bh");
- asm("movb $0x0f,%%ah ; int $0x10" : "=r" (page) : : "eax", "ebx");
+ asm("movb $0x0f,%%ah ; int $0x10" : "=r" (page) : : "eax");
return page;
}