SLAE data types lesson 10 Flashcards
1
Q
How much bits in byte?
A
8 bits
2
Q
How much bits in Word?
A
16 bits
3
Q
How much bits in Double Word?
A
32 bits
4
Q
How much bits in Quad Word?
A
64 bits
5
Q
How much bits in Double Quad Word?
A
128 bits
6
Q
Declare Uninitialzed Data
A
buffer: resb 64 ; reserve 64 bytes
wordvar: resw 1 ; reserve a word
7
Q
Special Tokens
A
$ - evaluates to the current line
$$ - evaluates to the beginning of current section.
8
Q
what is the time instruction?
A
it’s replication of the instruction. ex: times 100 resb
zerobuf : times 64 db 0