-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathifelse3.asm
64 lines (44 loc) · 1.63 KB
/
ifelse3.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
TITLE ifelse : An AL Program that reads a character and prints it only if it
; is a Upper Case Letter ( Simulation of If-Else then
; structure ).
.MODEL SMALL
.STACK 100H
.DATA
PROMPT DB 'Enter the character : $'
MSG_1 DB 'The input letter is : $'
MSG_2 DB 'The input character is not an Upper Case Letter.$'
.CODE
MAIN PROC
MOV AX, @DATA ; initialize DS
MOV DS, AX
LEA DX, PROMPT ; load and print PROMPT
MOV AH, 9
INT 21H
MOV AH, 1 ; read a character
INT 21H
MOV BL, AL ; save the input character into BL
MOV AH, 2 ; carriage return
MOV DL, 0DH
INT 21H
MOV DL, 0AH ; line feed
INT 21H
CMP BL, "A" ; compare input character and "A"
JB @DISPLAY ; jump to label @DISPLAY if input<A
CMP BL, "Z" ; compare input character and "Z"
JA @DISPLAY ; jump to label @DISPLAY if input>Z
LEA DX,MSG_1 ; load and print MSG_1
MOV AH, 9
INT 21H
MOV AH, 2 ; print the character
MOV DL, BL
INT 21H
JMP @EXIT ; jump to label @EXIT
@DISPLAY: ; jump label
LEA DX,MSG_2 ; load and print MSG_2
MOV AH, 9
INT 21H
@EXIT: ; jump label
MOV AH, 4CH ; return control to DOS
INT 21H
MAIN ENDP
END MAIN