I've problem with this small program, using data, restore, read seems not working with fixed size strings, why?
Code: Select all
Define str.s{100}, str1.s
Restore label1
Read.s str
Read.s str1
Debug str
Debug str1
End
DataSection
label1: Data.s "Hello", "world"
EndDataSection