Masm是否支持对常量的按位操作?例如,在Nasm中,您可以编写如下内容:
%define foo 00010000b
%define bar 00000011b..。
mov r8b, foo | bar在Masm中,我尝试过:
foo equ 00010000b
bar equ 00000011b..。
mov r8b, foo | bar这会导致“文件中的错误A2044无效字符”。
https://stackoverflow.com/questions/43517388
复制相似问题