mirror of
https://github.com/fadden/6502bench.git
synced 2025-03-01 16:31:59 +00:00
Change Merlin 32 output suffix
We append an assembler identifier to generated code. For Merlin 32, this was "_Merlin32". All of the other assemblers use a lower-case string, which makes Merlin look a little weird, so it has been changed to "_merlin32". Windows filesystems are generally case-insensitive, so this won't likely affect anything.
This commit is contained in:
parent
cac03e6a25
commit
e9fbc6c96c
2
.gitignore
vendored
2
.gitignore
vendored
@ -7,7 +7,7 @@
|
|||||||
SourceGen/SourceGen-settings
|
SourceGen/SourceGen-settings
|
||||||
SourceGen/PluginDllCache
|
SourceGen/PluginDllCache
|
||||||
DIST_Debug
|
DIST_Debug
|
||||||
DIST_release
|
DIST_Release
|
||||||
|
|
||||||
|
|
||||||
# User-specific files
|
# User-specific files
|
||||||
|
@ -31,7 +31,7 @@ namespace SourceGen.AsmGen {
|
|||||||
/// (https://www.brutaldeluxe.fr/products/crossdevtools/merlin/).
|
/// (https://www.brutaldeluxe.fr/products/crossdevtools/merlin/).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class GenMerlin32 : IGenerator {
|
public class GenMerlin32 : IGenerator {
|
||||||
private const string ASM_FILE_SUFFIX = "_Merlin32.S"; // must start with underscore
|
private const string ASM_FILE_SUFFIX = "_merlin32.S"; // must start with underscore
|
||||||
|
|
||||||
// IGenerator
|
// IGenerator
|
||||||
public DisasmProject Project { get; private set; }
|
public DisasmProject Project { get; private set; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user