Assembly Instructions - Add together all of the 2-word numbers that are stored from address 60000h to 60FFFh in memory. Store the sum starting at location 61020h. Each 2-word number may range in size from 00000000h to FFFFFFFFh. Include a flowchart clearly describing your solution.
Advanced Instructions: Convert any hexadecimal number ... Multiply the byte in register ... - Write complete programs for the following problems.
1. Convert any hexadecimal number from 00 to 63h placed in AX into its equivalent unpacked BCD number in AX.
2. Multiply the byte in register AL by the byte in register BL. Place the result in AX.
Useful Assembly Instructions - Count the number of bytes located in memory from DS:1000h to DS:1200h that are greater than 77h. Place the count on register CA.
Procedures - Create a stack area at 1000h. Push 10h bytes, located at data memory addresses 60000h to 6000fh, on the stack using indirect addressing. Then pop the stack to memory addresses 62000h to 6200fh using indirect addressing. Load unique data into the 10h bytes in order to test the program.
Procedures - Write a simple near procedure (such as a return) and call it using direct addressing.