S
S
sddvxd2019-05-12 17:36:35
assembler
sddvxd, 2019-05-12 17:36:35

How to "glue" a string?

Please tell me how to do this in NASM:

msg db "hello " 
            "world"

How can I make these 2 lines count as one?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
J
jcmvbkbc, 2019-05-12
@jcmvbkbc

How can I make these 2 lines count as one?

Were considered as one - went in memory in a row without separators between them?
msg db "hello " 
    db "world"

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question