Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このように宣言された文字列がある場合:
message db "ABCDEFGHIJ",0
'A'文字など、この文字列内の特定の文字を指すことができるポインタを作成するにはどうすればよいですか。また、ポインタをインクリメントし、その結果、文字列全体を循環できるループを作成するにはどうすればよいですか?
mov ecx, message ; Masm would use "offset" top: mov al, [ecx] ; get a character inc ecx ; get ready for next one cmp al, 0 ; end of string? jz done ; do something intelligent with al jmp top done: