汇编: and,or逻辑运算指令
assume cs:codecode segment ; 逻辑运算 按照二进制位运算 start: mov ax,0 mov al, 00001111B and al, 11110000B ; 00000000B ...