문제

while reading some TASM code I came upon an unknown syntax and I couldn't find what it means :

.data
    XX  DW  1
        DB  4

What does this mean ? I guess you declare a word called XX initialized to 1, but what about the next line ? Is it a part of the XX declaration or an unnamed variable to reserve some place ?

도움이 되었습니까?

해결책

It means that at the address labelled by XX, I have an access to a word, and then a byte (so 3 bytes are reserved).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top