From 5441e9fac2d1ff40f2363ed12d31f5eb1ef0e8ec Mon Sep 17 00:00:00 2001 From: hpa Date: Mon, 2 Feb 2004 22:43:13 +0000 Subject: [PATCH] Clobber of ebx is implicit since %bh is output --- menu/biosio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/biosio.c b/menu/biosio.c index dcc806b..faa63c9 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; } -- 2.7.4