开发者

What does the 'h' suffix mean?

开发者 https://www.devze.com 2023-01-03 02:19 出处:网络
In x86 assembly, what does an h suffix on 开发者_运维问答numbers represent? For example: sub CX, 13h

In x86 assembly, what does an h suffix on 开发者_运维问答numbers represent?

For example:

sub CX, 13h


"H" for "Hexadecimal", base 16. 0009H = 9 decimal, 000AH = 10 decimal, 000FH = 15 decimal, 0010H = 16, 0020H = 32 et cetera.

0

精彩评论

暂无评论...
验证码 换一张
取 消