為了調試處理單色位圖的程序寫的一個小函數,還不錯哦,新手朋友大家一起來看看吧。
int byte8_2_int(char a,char pos)// a 為要位所在的字節,pos為要輸出哪一位
{
char reti=0;
__asm
{
mov al, a
mov cl,pos
shr al,cl
and al,0x01
cmp al,0x00
jnz set1
jmp A_Exit
set1:
xor ax,ax
mov al,0x01
mov reti,al
}
A_Exit:
return reti;
}