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
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
Code: Select all
#test_const1 = $FFFF
Read test1.w
Read test2.s
Debug test1
Debug test2
DataSection
Data.w #test_const1
Data.s "my string constant"
EndDataSection