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.
私はアセンブリ言語の初心者です。' ' で囲まれた宣言と含まれていない宣言の違いを知りたいです。
例えば、
変数 1 デシベル '0'
変数 2 デシベル 0
「」が付いているものは印刷すると、「」の中にあるものが表示されることを知っています。
ありがとう!:)
一重引用符がある場合は ASCII 文字で、引用符がない場合は単なる整数値です。
v1 db '0' ; ASCII character '0' = 0x30 v2 db 'A' ; ASCII character 'A' = 0x41 v3 db 0 ; integer value 0 = 0x00 v4 db 9 ; integer value 9 = 0x09