I'm encountering a strange error with lines written like such:
uint8_t PotM$potSetting;
where uint8_t is typedefed above, yields the following errors
/tmp/cc0twSga.s:134: Error: expected comma after symbol-name
/tmp/cc0twSga.s:134: Error: unknown opcode `potsetting'
If I remove the $ and everything before it, in this case PotM$, leaving only uint8_t potSetting, the error goes away. So is the $ character special in variable names?
uint8_t PotM$potSetting;
where uint8_t is typedefed above, yields the following errors
/tmp/cc0twSga.s:134: Error: expected comma after symbol-name
/tmp/cc0twSga.s:134: Error: unknown opcode `potsetting'
If I remove the $ and everything before it, in this case PotM$, leaving only uint8_t potSetting, the error goes away. So is the $ character special in variable names?