Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the 'h' suffix mean?

Tags:

x86

assembly

In x86 assembly, what does an h suffix on numbers represent?

For example:

sub CX, 13h
like image 651
David Wolever Avatar asked Jun 13 '10 03:06

David Wolever


1 Answers

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

like image 106
Jim Lewis Avatar answered Nov 11 '22 19:11

Jim Lewis