1
0
mirror of https://github.com/fadden/6502bench.git synced 2025-01-21 05:31:13 +00:00
Andy McFadden b74630dd5b Work around two assembler issues
Most assemblers end local label scope when a global label is
encountered.  cc65 takes this one step further by ending local label
scope when constants or variables are defined.  So, if we have a
variable table with a nonzero number of entries, we want to create
a fake global label at that point to end the scope.

Merlin 32 won't let you write " LDA #',' ".  For some reason the
comma causes an error.  IGenerator now has a "tweak operand format"
interface that lets us fix that.
2019-09-20 14:05:17 -07:00
..
2019-09-20 14:05:17 -07:00
2019-09-13 17:18:33 -07:00
2019-09-14 18:51:03 -07:00
2019-09-13 20:19:13 -07:00
2019-09-17 14:38:16 -07:00
2019-09-18 18:11:48 -07:00