I'm new in 8086 Assembly programming and I have a question.
I have a string which size is about 1400 characters. When I'm trying to define it like:
.data
mystring DB '(string with 1400 characters)'
I'm getting an error
"Unterminated string".
I'm using emu8086 emulator. I think my string doesn't fit in DB
. Is there any way to keep huge string in byte?