Question: Write an assembly program that defines a string of four characters and converts it into an unsigned 16-bit integer.
For example, a string "2319" should be converted to an unsigned integer with a value of 2319 in decimal (0x090F hex).
Assume that the defined string consist only of valid characters 1-9.
Please keep it simple and short and no copy and paste or at least help me get started?