Reputation: 57
I write this code in assembly:
section .data
message DB "Hello", 0x0a
what does it mean "0x0a"?
Upvotes: 2
Views: 9451
Reputation: 16364
It's a byte with the value "10" in hexadecimal. 10 happens to be the ASCII value for a newline character.
Upvotes: 5