hello, I have some question about assembly, is it possible to convert ASCII code of numbers
(0, 1, 2, 3, 4, 5, 6, 7, 8, 9) without 10 compares and branches
like
if(input == 48) return 0;
...
(I'm talkin about code on assembly!) thanks in advance