-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable_problem.asm
More file actions
55 lines (42 loc) · 1.13 KB
/
table_problem.asm
File metadata and controls
55 lines (42 loc) · 1.13 KB
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
;Two tables contain 10 16-bit data.
;WAP in 8086 to generate third table
;which contains 1FFFh if the corresponding data in 1st table is less than that of 2nd table,
;else store 0000h
.model small
.stack 64
.data
; First table with 10 16-bit values
table1 dw 1000h, 2000h, 3000h, 4000h, 5000h, 6000h, 7000h, 8000h, 9000h, 0A000h
; Second table with 10 16-bit values
table2 dw 1500h, 1500h, 3500h, 3800h, 4500h, 6500h, 6800h, 7800h, 8800h, 0B000h
; Third table to store results (10 16-bit values, initialized to 0)
table3 dw 10 dup(0)
.code
main proc far
;data segment
mov ax, @data
mov ds, ax
;pointers
lea SI, table1
lea BX, table2
lea DI, table3
;loop counter
mov ch, 0
mov cl, 10
l1:
MOV AX, [SI]
cmp AX, [BX]
JG T1_GREATER
MOV [DI], 1FFFH
JMP SKIP
T1_GREATER:
MOV [DI], 0000H
SKIP:
add si, 2
add bx, 2
add di, 2
LOOP L1
mov ah, 4Ch
int 21h
main endp
end