Chapter 16 Flashcards
What is ASCII stands for
American Standard Code for Information Interchange.
What is ASCII code
standard numeric representation
What is the difference between VGA memory and computer memory
Same
What is the memory location of IBM PC text mode
B80000
What is video attribute
The second byte in the word designated for one screen location holds the foreground and background colors for the character. This is called its video attribute.
What is the role of bit 7 in word
Blinking of foreground character
What register commonly used for videos access
ES
Can we load a segment register with intermediate operand
No
mov word [es:0], 0x0741
does what
print an ‘A’ on the top left of the screen in white color on black background.
mov word [es:160], 0x1230
does what
This is displayed 80 words after the start and there are 80 characters in one screen row. Therefore this is displayed on the first column of the second line. the attribute byte is 12 meaning green color on blue background.