SLAE data types lesson 10 Flashcards

1
Q

How much bits in byte?

A

8 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How much bits in Word?

A

16 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How much bits in Double Word?

A

32 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How much bits in Quad Word?

A

64 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How much bits in Double Quad Word?

A

128 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Declare Uninitialzed Data

A

buffer: resb 64 ; reserve 64 bytes
wordvar: resw 1 ; reserve a word

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Special Tokens

A

$ - evaluates to the current line

$$ - evaluates to the beginning of current section.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is the time instruction?

A

it’s replication of the instruction. ex: times 100 resb

zerobuf : times 64 db 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly