mov byte ptr szAscii [eax] , 零

movbyteptrszAscii[eax] , 0程序中数据段定义有下面一句:szAsciidb4 dup (?)程序代码中:movbyteptrszAscii

mov byte ptr szAscii [eax] , 0
程序中数据段定义有下面一句:
szAsciidb4 dup (?)

程序代码中:
mov   byte  ptr  szAscii   [eax] , 0
请问这句怎么理解?
[解决办法]
就是向 szAscii 字符串里的第 eax 个位置的字节填入 00 ,首个字符为第 0 个位置。