Can you check you have GCASM selected, and Append to Great Cow BASIC message to HEX file is checked. See the attachment.
Then, verify all is working, then post the HEX produced to post in this thread.
The ASM was always correct. Hence, it worked in MPASM. It was GCASM conversion of the ASM source ( all in internal to the GCBASIC compiler) that was the root cause. The HEX will show me that all is good. :-)
ok but for a more orderly reading of the code I would like to do:
Table code Store data
1,2,3,4, ' cod1
5,6,7,8, ' cod2
9,0,1,2 ' ecc
End Table
It is not possible ?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Thanks.
Can you check you have GCASM selected, and
Append to Great Cow BASIC message to HEX file
is checked. See the attachment.Then, verify all is working, then post the HEX produced to post in this thread.
The ASM was always correct. Hence, it worked in MPASM. It was GCASM conversion of the ASM source ( all in internal to the GCBASIC compiler) that was the root cause. The HEX will show me that all is good. :-)
Last edit: Anobium 2023-08-20
OK, I send files as requested
and
Thank you.
If you are happy then we can call this done! :-)
Sorry, I'm bothering you again for a simple problem, I can't put a table with more lines, the compiler gives an error:
You have a line continuation
" _"
on the error line.Remove the continaation
" _"
as this can only appear at the end of the line of code.ok but for a more orderly reading of the code I would like to do:
Table code Store data
1,2,3,4, ' cod1
5,6,7,8, ' cod2
9,0,1,2 ' ecc
End Table
It is not possible ?
Not quite right. The
,
at the end indicates more table data on the line and you have comments and therefore not more table data on the line.The following is correct.
OK I messed up for nothing
No Problem. I understand.