我如何实现这样的目标:
abc db "abc",0
def db "def",0
textnotequal db "strings are not equal",0
textequal db "strings are equal",0
.if abc != def
invoke MessageBox, NULL, addr textnotequal, addr textnotequal, MB_OK
.elseif abc == def
invoke MessageBox, NULL, addr textequal, addr textequal, MB_OK
.endif
我是否需要先将 abc & def 移入某些东西,或者这通常是不可能的?