I am having trouble understanding how the data segments add up in relation to the hex memory addresses. Please explain w
Posted: Tue Apr 12, 2022 10:19 am
I am having trouble understanding how the data segments add up
in relation to the hex memory addresses. Please explain where the
bytes are all coming from.
The following data segment starts at memory address 1000h (hexadecimal) "Assembly is fun",0 25 DUP() .data printString moreBytes dateIssued dueDate elapsedTime BYTE BYTE DWORD DWORD WORD ? ? ? What is the hexadecimal address of dueDate? O 102Dh 1029h 1010h 1045h
The following data segment starts at memory address 1100h (hexadecimal) .data printString moreBytes dateIssued dueDate elapsedTime BYTE BYTE DWORD DWORD WORD "MASM is fun", 48 DUP (O) ? ? ? What is the hexadecimal address of dueDate? 113Ch 1140h 110Ch 1164h
in relation to the hex memory addresses. Please explain where the
bytes are all coming from.
The following data segment starts at memory address 1000h (hexadecimal) "Assembly is fun",0 25 DUP() .data printString moreBytes dateIssued dueDate elapsedTime BYTE BYTE DWORD DWORD WORD ? ? ? What is the hexadecimal address of dueDate? O 102Dh 1029h 1010h 1045h
The following data segment starts at memory address 1100h (hexadecimal) .data printString moreBytes dateIssued dueDate elapsedTime BYTE BYTE DWORD DWORD WORD "MASM is fun", 48 DUP (O) ? ? ? What is the hexadecimal address of dueDate? 113Ch 1140h 110Ch 1164h