In Assembly language on emu8086
Q4 - Write a procedure AsciValue that takes 2 strings as parameters and displays the sum of ASCII values of both strings.
For example:
The two input strings are "Ali" and "good". Then we calculate their ASCII values accordingly:
Ali: [65 (ASCII of A) + 108 (ASCII of l) + 105 (ASCII of i)]
good: [103 (ASCII of g) + 111 (ASCII of o) + 111 (ASCII of o) + 100 (ASCII of d)]
Output should be like this:
Ali: 278
good: 425
Note: Strings should be taken as input from the user. As we know, the emulator displays single-digit numbers only. So you can verify your summation result in some variable or register in the emulator.