Problem with constants string in DataSection
Posted: Fri Aug 06, 2004 3:06 pm
Hi,
I've this code:
#test_const1 is corretly putted in data section, while #test_const2 not
.
Why?
TIA
I've this code:
Code: Select all
#test_const1 = $FFFF
#test_const2 = "my string constant"
Read test1.w
Read test2.s
Debug test1
Debug test2
DataSection
Data.w #test_const1
Data.s #test_const2
EndDataSection

Why?
TIA