Presentation is loading. Please wait.

Presentation is loading. Please wait.

21/11/2005CAP2411 Input & Output Instructions CPU communicates with the peripherals through I/O registers called I/O ports. There are 2 instructions, IN.

Similar presentations


Presentation on theme: "21/11/2005CAP2411 Input & Output Instructions CPU communicates with the peripherals through I/O registers called I/O ports. There are 2 instructions, IN."— Presentation transcript:

1 21/11/2005CAP2411 Input & Output Instructions CPU communicates with the peripherals through I/O registers called I/O ports. There are 2 instructions, IN & OUT, that access the ports directly. These instructions are used when fast I/O is essential ……. in a game program.

2 21/11/2005CAP2412 IN & OUT Most application programs do not use IN and OUT instructions. Why? 1) port addresses vary among computer models 2) easier to program I/O with service routines

3 21/11/2005CAP2413 2 categories of I/O service routine 1.The BIOS routines. 2. The DOS routines.

4 21/11/2005CAP2414 BIOS routines Are stored in ROM and interact directly with I/O ports. Used to carry basic screen operations such as moving the cursor & scrolling the screen.

5 21/11/2005CAP2415 DOS routines Can carry out more complex tasks. Printing a character string…. They use the BIOS routines to perform direct I/O operations.

6 21/11/2005CAP2416 The INT Instruction. To invoke a DOS or BIOS routine, the INT (interrupt) instruction is used. FORMAT INTinterrupt_number is a number that specifies a routine.

7 21/11/2005CAP2417 Example INT16h invokes a BIOS routine that performs keyboard input. We will use a particular DOS routine INT 21h

8 21/11/2005CAP2418 INT 21h Used to invoke a large number of DOS functions. Put the function number in AH register and then invoke INT21h

9 21/11/2005CAP2419 FUNCTIONS Function numberRoutines 1 single-key input 2 single-character output 9 character string output

10 21/11/2005CAP24110 INT 21h functions Input values are to be in certain registers & return output values in other registers.

11 21/11/2005CAP24111 Function 1 Single-Key Input Input : AH = 1 Output :AL = ASCII code if character key is pressed. = o if non-character is pressed.

12 21/11/2005CAP24112 Example MOVAH,1 ; input key function INT21h ; ASCII code in AL

13 21/11/2005CAP24113 Example If character k is pressed, AL gets its ASCII code; the character is also displayed on the screen If Arrow key or F1-F10, AL will contain 0 The instructions following the INT21h can examine AL and take appropriate action.

14 21/11/2005CAP24114 Function 2 INT21h, function 1 …. doesn’t prompt the user for input, he might not know whether the computer is waiting for input or it is occupied by some computation. Function 2 can be used to prompt the user

15 21/11/2005CAP24115 Function 2 Display a character or execute a control function Input : AH = 2 DL = ASCII code for the display character or control character Output :AL = ASCII code of the display character or control character

16 21/11/2005CAP24116 Example MOVAH,2 ; display character function MOVDL, ‘?’ ; character is ‘?’ INT21h ; display character After the character is displayed, the cursor advances to the next position on the line.

17 21/11/2005CAP24117 Control functions Function 2 may also be used to perform control functions. If DL contains the ASCII code of a control character, INT21h causes the control function to be performed.

18 21/11/2005CAP24118 Control functions ASCII code (hex) SymbolFunction 7 BELbeep 8BSbackspace 9HTtab ALFline feed (new line) DCRcarriage return (start of current line)

19 21/11/2005CAP24119 A First Program Read a character and display it at the beginning of the next line 1-We start by displaying a question mark: MOV AH,2 ; display character function MOV DL,'?‘ ; character is ‘?’ INT 21H ; display character Move 3Fh, the ASCII code for “?”, into DL

20 21/11/2005CAP24120 Read a character MOV AH,1 ; read character function INT 21H ; character in AL

21 21/11/2005CAP24121 Display the character on next line First, the character must be saved in another register. MOVBL, AL; save it in BL This because the INT 21h, function 2, changes AL

22 21/11/2005CAP24122 Display the character on next line -Move cursor to the beginning of the next line: Execute carriage return & line feed. Put their ASCII codes in DL & execute INT 21h.

23 21/11/2005CAP24123 Move cursor to the beginning of the next line MOVAH, 2 ; display character function MOVDL, 0Dh ; carriage return INT 21h ; execute carriage return MOVDL, 0Ah ; line feed INT21h ; execute line feed

24 21/11/2005CAP24124 Display the character MOVDL, BL ; get character INT 21h ; and display it

25 21/11/2005CAP24125 Program Listing TITLE PGM4_1 : Echo PROGRAM.MODEL SMALL.STACK 100H.CODE MAIN PROC ;display prompt MOV AH,2 MOV DL,'?' INT 21H ; input a character MOV AH,1 INT 21H MOV BL,AL ; go to a new line MOV AH,2 MOV DL,0DH INT 21H MOV DL,0AH INT 21H ; display characters MOV DL,BL INT 21H ; return to DOS MOV AH,4CH INT 21H MAIN ENDP END MAIN

26 21/11/2005CAP24126 When a program terminates, it should return control to DOS MOV AH,4CH; DOS exit function INT 21H; exit to DOS

27 21/11/2005CAP24127 Displaying a string INT 21h, Function 9: Display a string Input : DX = offset address of string. The string must end with a ‘$’ character.

28 21/11/2005CAP24128 If the string contains the ASCII code of a control character, the control function is performed.

29 21/11/2005CAP24129 Example Print HELLO! on the screen. MSGDB ‘HELLO!$’

30 21/11/2005CAP24130 The LEA instruction INT 21h, function 9, expects the offset address of the character string to be in DX. To get it there, we use LEAdestination, source

31 21/11/2005CAP24131 LEAdestination, source LEA ….. Load Effective Address Destination … is a general register. Source ………… is a memory location. It puts a copy of the source offset address into destination.

32 21/11/2005CAP24132 Example MSGDB ‘HELLO!$’ LEADX, MSG ; puts the offset ;address of variable ; MSG in DX This example contains data segments initialize DS.

33 21/11/2005CAP24133 Program Segment Prefix When a program is loaded in memory, DOS prefaces it with PSP. The PSP contains information about program. DOS places in DS & ES segment # of PSP. DS must be loaded with the segment # of data segment

34 21/11/2005CAP24134 DS initialization A program containing a data segment begins with: MOVAX,@DATA MOVDS,AX @Data is the name of the data segment defined by.DATA. It is translated into a segment #.

35 21/11/2005CAP24135 Print the message With DS initialized, we may print the “HELLO!” message: LEADX,MSG;get message MOVAH,9;display string function INT21h;display string

36 21/11/2005CAP24136 TITLE PGM4-2: PRINT STRING PROGRAM ; This program displays “Hello!”.MODEL SMALL.STACK 100H program title (comment) comment line memory model: small programs use at most 64K code and 64K data set the stack size Sample Program directive giving title for printed listings

37 21/11/2005CAP24137 Sample Program.DATA MSG DB “HELLO!”,0DH,0AH,’$’.CODE MAIN PROC MOV AX,@DATA MOV DS,AX;initialize DS LEA DX,MSG;get message MOV AH,9;display string function INT 21H;display message MOV AH,4CH INT 21H;DOS exit MAIN ENDP END MAIN starts the data segment where variables are stored starts the code segment reserve room for some bytes variable name carriage return and line feed Declares the beginning of the procedure which is called main marks the end of the current procedure marks the end of the program. “main” specifies the program execution is to begin with the procedure “main”

38 21/11/2005CAP24138 Sample execution: A> PGM4_2 HELLO!

39 21/11/2005CAP24139 Case Conversion Program ENTER A LOWER CASE LETTER : a IN UPPER CASE IT IS : A

40 21/11/2005CAP24140 Case Conversion Program Use EQU to define CR & LF as names for the constants 0DH & 0AH. CREQU0DH LFEQU0AH

41 21/11/2005CAP24141 The messages and input character can be stored in the Data Segment like this: MSG1DB 'ENTER A LOWER CASE LETTER : $‘ MSG2DB CR,LF, 'IN UPPER CASE IT IS : ‘ CHARDB ?,'$'

42 21/11/2005CAP24142 Our program begins by displaying the first message and reading the character: LEADX,MSG1 ; get first message MOV AH,9 ; display string function INT21H ;display first message MOV AH,1 ; read character function INT21H ; read a small letter into AL

43 21/11/2005CAP24143 Convert to upper case SUB AL,20H ; convert into uppercase MOV CHAR,AL ; and store it

44 21/11/2005CAP24144 Display second message & uppercase LEA DX,MSG2 ; get second message MOV AH,9 ; display string function INT 21H ; display message & uppercase letter

45 21/11/2005CAP24145 Program Listing

46 21/11/2005CAP24146.MODEL SMALL.STACK 100H.DATA CREQU0DH LFEQU0AH MSG1DB 'ENTER A LOWER CASE LETTER : $' MSG2DB CR,LF,'IN UPPER CASE IT IS : ' CHARDB ?,'$'.CODE MAIN PROC ; initialize DS MOV AX,@DATA MOV DS,AX ;print user prompt LEA DX,MSG1 MOV AH,9 INT 21H ; input a character and convert to upper case MOV AH,1 INT 21H SUB AL,20H MOV CHAR,AL ; display on the next line LEA DX,MSG2 MOV AH,9 INT 21H ; return TO DOS MOV AH,4CH INT 21H MAIN ENDP END MAIN


Download ppt "21/11/2005CAP2411 Input & Output Instructions CPU communicates with the peripherals through I/O registers called I/O ports. There are 2 instructions, IN."

Similar presentations


Ads by Google