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.
can any one tell how to convert ascii to binary or dec using assembly /C/ MIKROC
MOVLW 'b'
// To convert single ascii bytes (if ascii is '0' to '9') you can do this;
dec_digit = (ascii_digit - '0');
// in reverse, to convert a number 0-9 to an ascii character number;
ascii_digit = (dec_digit + '0');