Поиск значения 33h
в байтовом массиве 11H,22H,33H,44H,55H
DATA SEGMENT
# Data where we will look up for value
STRING1 DB 11H,22H,33H,44H,55H
# message to be printed out
MSG1 DB "FOUND$"
# yet one message
MSG2 DB "NOT FOUND$"
# program will look up for this value
SE DB 33H
DATA ENDS
# this is PRINT macro- will be used later like a function
PRINT MACRO MSG
# 09H - is a function of interrupt 21h - print to console http://spike.scu.edu.au/~barry/interrupts.html
MOV AH, 09H
LEA DX, MSG
# print message using interrupt 21h
INT 21H
# I think it's exit - check it in the x86 interrupts table if you need
INT 3
ENDM # end of print macro
CODE SEGMENT
ASSUME CS:CODE, DS:DATA
START:
# this is the first line of code
MOV AX, DATA
MOV DS, AX
# copy value of SE (33h) to the AL register so later we can compare it
MOV AL, SE
LEA SI, STRING1
# save in CX length of the data to be looked up for value (actually num or iterations)
MOV CX, 04H
# the main loop starts here
UP:
# copy byte from buffer STRING1 to the BL register
MOV BL,[SI]
# check if AL==BL -> value found
CMP AL, BL
# if AL==BLjump to FO (will print FOUND)
JZ FO
# if not found,
# move to next byte in STRING1
INC SI
# decrement loop constraint (loop should end before reaching end of string)
DEC CX
# if CX <> 0 loop again
JNZ UP
# if CX==0 print message NOT FOUND
PRINT MSG2
JMP END1
FO:
PRINT MSG1
END1:
INT 3
CODE ENDS
END START