How to convert String to Number in 8086 assembly?
I have to build a Base Converter in 8086 assembly . The user has to choose his based and then put a number, after then , the program will show him his number in 3 more bases[he bring a decimal number, and after this he will see his number in hex, oct, and bin. This first question is, how can I convert the number he gave me, from string, to a number? the sec question is, how can i convert? by RCR, and then adc some variable? Here is my code: data segment N=8 ERROR_STRING_BASE DB ,10,13, " THIS IS NOT A BASE!",10,13, " TRY AGINE" ,10,13," $" OPENSTRING DB " Welcome, to the Base Convertor",10,13,