mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-29 10:50:28 +00:00
Show "assembling" when assembling
Merlin 32 is slow enough with a 64K data file that you have enough time to read the text.
This commit is contained in:
parent
50e8be186a
commit
7aa3e4dbcd
@ -711,7 +711,7 @@ namespace Asm65 {
|
||||
{ OpDef.AddressMode.StackRTI, "" },
|
||||
{ OpDef.AddressMode.StackRTL, "" },
|
||||
{ OpDef.AddressMode.StackRTS, "" },
|
||||
{ OpDef.AddressMode.StackRel, "" },
|
||||
{ OpDef.AddressMode.StackRel, "Stack Relative" },
|
||||
{ OpDef.AddressMode.StackRelIndIndexY, "Stack Relative Indirect Index Y" },
|
||||
{ OpDef.AddressMode.WDM, "" }
|
||||
};
|
||||
|
@ -782,6 +782,8 @@ namespace SourceGen.AsmGen {
|
||||
return null;
|
||||
}
|
||||
|
||||
worker.ReportProgress(0, Properties.Resources.PROGRESS_ASSEMBLING);
|
||||
|
||||
// Wrap pathname in quotes in case it has spaces.
|
||||
// (Do we need to shell-escape quotes in the pathName?)
|
||||
ShellCommand cmd = new ShellCommand(config.ExecutablePath,
|
||||
|
@ -741,6 +741,8 @@ namespace SourceGen.AsmGen {
|
||||
return null;
|
||||
}
|
||||
|
||||
worker.ReportProgress(0, Properties.Resources.PROGRESS_ASSEMBLING);
|
||||
|
||||
// Wrap pathname in quotes in case it has spaces.
|
||||
// (Do we need to shell-escape quotes in the pathName?)
|
||||
ShellCommand cmd = new ShellCommand(config.ExecutablePath, ". \"" + pathName + "\"",
|
||||
|
@ -754,6 +754,8 @@ namespace SourceGen.AsmGen {
|
||||
return null;
|
||||
}
|
||||
|
||||
worker.ReportProgress(0, Properties.Resources.PROGRESS_ASSEMBLING);
|
||||
|
||||
string options = "--case-sensitive --nostart --long-address -Wall";
|
||||
string outFileName = pathName.Substring(0, pathName.Length - 2);
|
||||
|
||||
|
9
SourceGen/Properties/Resources.Designer.cs
generated
9
SourceGen/Properties/Resources.Designer.cs
generated
@ -753,6 +753,15 @@ namespace SourceGen.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Executing assembler....
|
||||
/// </summary>
|
||||
internal static string PROGRESS_ASSEMBLING {
|
||||
get {
|
||||
return ResourceManager.GetString("PROGRESS_ASSEMBLING", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Generating {0}....
|
||||
/// </summary>
|
||||
|
@ -348,6 +348,9 @@
|
||||
<data name="PLUGIN_DIR_FAIL_CAPTION" xml:space="preserve">
|
||||
<value>Failed Preparing Plugin Directory</value>
|
||||
</data>
|
||||
<data name="PROGRESS_ASSEMBLING" xml:space="preserve">
|
||||
<value>Executing assembler...</value>
|
||||
</data>
|
||||
<data name="PROGRESS_GENERATING_FMT" xml:space="preserve">
|
||||
<value>Generating {0}...</value>
|
||||
</data>
|
||||
|
Loading…
Reference in New Issue
Block a user