cs401 Task 1
cs401 Task 1
"CS401"
"Assignment No. 1"
"ID = bc220416370"
Task No - 1:
1 - Find out the physical address from your segment: offset pair?
Solution:
VU ID = BC220416370
Segment: 2204
Offset: 1637
2 - What will be the last possible physical address accessible using your segment address?
Solution:
3 - What will be the first possible physical address accessible using your segment address?
Solution:
4 - Write assembly language instruction(s) to store any data in your offset address of current code
segment?
Solution:
[org 0x0100]
data: dw 40
int 0x21
5 - Write assembly language instruction(s) to store any data in your segment offset pair?
Solution:
org [0x0100]
data: dw 40
mov ds, ax
int 0x21