Can you help with this practice problem?
You need to create a short assembly program named char_int, stored in file char_int.asm, that prompts the user for a character, and then for an integer.
Also, the character should be printed in single quotes.
Here's an example output:
Enter a character: c
Enter an integer: 15
The character entered was: 'c'
The integer entered was: 15
You have to make an assembly program to insert integer and a character.