A 50-digit unpacked decimal? Didn't see that, my bad.
You know why intel calls unpacked BCD 'ascii'? Because if you take a number in ASCII string form, and subtract 48 from each character, reverse the order of the digits, you get an unpacked BCD.
47532
is ascii...
34h 37h 35h 33h 32h
is unpacked BCD...
02h 03h 05h 07h 04h
Sounds like you need a simple ascii->int converter with the ability to work with n-digits... where n is 50.
What you do is, you take the LAST BCD digit, add it to a variable accumulator (which you init'ed to 0) then you go to the next last BCD digit and load it temporarily somewhere (say X), multiply the variable accumulator by 10, add X, then loop to the next next last BCD digit until you reach the 0th digit.
ACC=0
COUNTER=49
loop1:
if COUNTER<0, jmp outloop1
ACC=ACC*10
ACC=ACC + BCDNUMBER[COUNTER]
COUNTER=COUNTER-1
jmp loop1
outloop1:
50-digit decimal, that's beyond the range of 32-bits... you need to work with 64-bits, maybe 96-bits.
"Information has a tendency to be free. Which means someone will always tell you something you don't want to know."