I am new to assembly and don't understand it fully yet. I have come across a program which prints out "Hello World!". The line of code where this string is defined looks like this:
message db 10, 'Hello World!', 10, 0
I would really appreciate if someone could explain what all these numbers mean. I suppose that 0 represents the end of the string, but I am not sure what these two 10s are for. Thanks