Abhishek Saurabh
Newbie level 1
what is the alternative in c51 for the function getkey() in assembly.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <reg51.h>
char _getkey () {
char c;
while (!RI);
c = SBUF;
RI = 0;
return (c);
}