|
|
 |
|
|
 |
 |
 |
|
- At this point, younotice that segment register “DS=1271”, which mean the data segment is defined. We can now look at the cotents of memory defined as data segment.
|
 |
 |
|
- The first two bytes at the starting address of the data segment are “FF 00”. The data is saved in the order “low byte followed by the high byte”, so the actual data word “00FF h”, which you can go to the program and see is first data word stored in the data segment.
- The third and fourth bytes are “FF 0F”, so that the second data word stored is “0F FF h”, which you should verify is indeed the second data word stored in the data segment by the progam.
- On the right hand side, an attempt is made to convert the bytes to their ASCII code equivalent, if there is a valid match.
|
|