I am new to programming the 8086 Assembly and I have a question.
I have a string about 1400 characters in size. When I try to define it as:
.data mystring DB '(string with 1400 characters)'
I get an error
"Unterminated string".
I am using emu8086 emulator. I think my line does not fit in DB. Is there a way to save a huge string in bytes?
DB
I checked it manually and it looks like the maximum length is 1010.
Also on one of the links about emu8086 this can be found:
DUP 1020 ! ( - 13 ), ( ). -
, , , , , .
mystring DB '<1010>*A' mystring_cont DB 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAA'
Source: https://habr.com/ru/post/1694430/More articles:The difference between “Foo :: Type foreign import data” and just “Foo data” - purescriptWhy is the Perl coding level unaffected? - perlНезаконная инструкция (ядро сбрасывается) после запуска importororflowflow - pythonGrouped Total - pandasThe correct way to use Spring WebClient in a multi-threaded environment - springHow to switch between a set of training and validation data using tf.MonitoredTrainingSession? - datasetWhat are the options for using F # module signature files? - f #Iterators with a complex value type: confusion with value_type and reference - c ++How can a Swift module / class work without language support for "secure" members? - access-controlCSS grid: border for incomplete lines - htmlAll Articles