task in assembler 8086

by zemzi
1 replies
I need help how to solve this task, I don't know how to solve first part which is for memory location. If someone know please help me. It is very important..

ENTRY RESULTS entrance examination: In memory location X is placed in an entrance exam results in the form:

Indeks - 2 bytes
points - 1 byte

Create a program in 8086, so that the screen will read the number of students placed in memory and then the location PRIEMEN will print the screen line by line

<INDEKS1>, <POINTS1>
<INDEKS2>, <POINTS2>
<INDEKS3>, <POINTS3>
<INDEKS4>, <POINTS4>
...

For printing use the macro.
example:
If the memory is written: 2 5 10 0 64 100 ... you need to print:
2 * 256 5 = 517, 2 * 0 64 = 64

517, 10
64, 100
#8086 #assembler #task

Trending Topics