有人可以在汇编中定义我and
关键字的确切用途吗?我在这里提供了一个代码,有人可以解释一下and
这段代码的作用吗?顺便说一句,and
它位于下面的某个地方,begin
只是为了让您轻松找到它。
code segment
assume cs:code;ds:code
org 100h
begin:
mov ah, 09
mov dx, offset msg1
int 21h
mov ah,01h ;ask user
int 21h
and al,01h
jz EVENn
mov ah, 09 ;display string
mov dx, offset oddmsg
int 21h
jmp ENDd
EVENn:
mov ah, 09 ;display string
mov dx, offset evenmsg
int 21h
ENDd:
int 20h
msg1:db 'enter a number: $'
evenmsg:db 0ah,0dh, 'EVEN $'
oddmsg:db 0ah,0dh, 'ODD$'
code ends
end begin