1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-08-14 03:29:00 +00:00
6502bench/SourceGen/AsmGen
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
..
WpfGui First pass at ACME support 2019-08-03 20:54:07 -07:00
AsmAcme.cs Work around two assembler issues 2019-09-20 14:05:17 -07:00
AsmCc65.cs Work around two assembler issues 2019-09-20 14:05:17 -07:00
AsmMerlin32.cs Work around two assembler issues 2019-09-20 14:05:17 -07:00
AsmTass64.cs Work around two assembler issues 2019-09-20 14:05:17 -07:00
AssemblerConfig.cs Move WPF code from SourceGenWPF to SourceGen 2019-07-20 13:28:37 -07:00
AssemblerInfo.cs First pass at ACME support 2019-08-03 20:54:07 -07:00
AssemblerVersion.cs Move WPF code from SourceGenWPF to SourceGen 2019-07-20 13:28:37 -07:00
GenCommon.cs Work around two assembler issues 2019-09-20 14:05:17 -07:00
IAssembler.cs Move WPF code from SourceGenWPF to SourceGen 2019-07-20 13:28:37 -07:00
IGenerator.cs Work around two assembler issues 2019-09-20 14:05:17 -07:00
LabelLocalizer.cs Work around two assembler issues 2019-09-20 14:05:17 -07:00