@dipen30-hGOPpa
•
Oct 24, 2024
Oct 24, 2024
1.1K
Need Help in understanding this function
Can Anyone Explain This function ?
int getkey()
{
union REGS i,o;
while(!kbhit())
;
i.h.ah=0;
int86(22,&i,&o);
return(o.h.ah);
}
also what is h & ah in this function ?