Reputation: 21
Does anyone knows why people using 0x before number?
For example:
mov ah, 0x16 mov ah, 16
There is a difference between them?
Upvotes: 0
Views: 6433
Reputation: 3524
0x implies it's a hex literal, 0x16 is 22 decimal.
0x
0x16
Upvotes: 7