mov ah, al le 5ah and al ge 41h
判断al中的数据是否为大写字母,这个语句的语法哪里错了
------最佳解决方案--------------------------------------------------------
Masm 提示 constant or relocatable label expected 大致是要求常量或通常的标号,不支持现在的方式。对 .if 语句倒是支持的,不过可能需要写成下面这样的格式:
.if (al <= 5ah) && (al >= 41h)