mirror of
https://github.com/fadden/6502bench.git
synced 2026-04-26 12:18:26 +00:00
Progress toward OMF file handling
Added generation of data and project files. We're applying the relocation dictionary, but not using the information to inform the formatting.
This commit is contained in:
@@ -130,6 +130,7 @@ limitations under the License.
|
||||
<system:String x:Key="str_MsgVisualizationIgnored">Visualization ignored</system:String>
|
||||
<system:String x:Key="str_NoFilesAvailable">no files available</system:String>
|
||||
<system:String x:Key="str_NoExportedSymbolsFound">No exported symbols found.</system:String>
|
||||
<system:String x:Key="str_OmfSegCommentFmt" xml:space="preserve">
Segment {0}: Kind={2}, SegName='{1}'

</system:String>
|
||||
<system:String x:Key="str_OpenDataDoesntExist">The file doesn't exist.</system:String>
|
||||
<system:String x:Key="str_OpenDataEmpty">File is empty</system:String>
|
||||
<system:String x:Key="str_OpenDataFailCaption">Unable to load data file</system:String>
|
||||
@@ -141,6 +142,7 @@ limitations under the License.
|
||||
<system:String x:Key="str_OpenDataWrongLengthFmt">The file is {0:N0} bytes long, but the project expected {1:N0}.</system:String>
|
||||
<system:String x:Key="str_OpenDataWrongCrcFmt">The file has CRC {0}, but the project expected {1}.</system:String>
|
||||
<system:String x:Key="str_OperationFailed">Failed</system:String>
|
||||
<system:String x:Key="str_OperationSucceeded">Success!</system:String>
|
||||
<system:String x:Key="str_ParentheticalNone">(none)</system:String>
|
||||
<system:String x:Key="str_PluginDirFailFmt">Failed while preparing the plugin directory {0}</system:String>
|
||||
<system:String x:Key="str_PluginDirFailCaption">Failed Preparing Plugin Directory</system:String>
|
||||
|
||||
@@ -241,6 +241,8 @@ namespace SourceGen.Res {
|
||||
(string)Application.Current.FindResource("str_NoFilesAvailable");
|
||||
public static string NO_EXPORTED_SYMBOLS_FOUND =
|
||||
(string)Application.Current.FindResource("str_NoExportedSymbolsFound");
|
||||
public static string OMF_SEG_COMMENT_FMT =
|
||||
(string)Application.Current.FindResource("str_OmfSegCommentFmt");
|
||||
public static string OPEN_DATA_DOESNT_EXIST =
|
||||
(string)Application.Current.FindResource("str_OpenDataDoesntExist");
|
||||
public static string OPEN_DATA_EMPTY =
|
||||
@@ -263,6 +265,8 @@ namespace SourceGen.Res {
|
||||
(string)Application.Current.FindResource("str_OpenDataWrongLengthFmt");
|
||||
public static string OPERATION_FAILED =
|
||||
(string)Application.Current.FindResource("str_OperationFailed");
|
||||
public static string OPERATION_SUCCEEDED =
|
||||
(string)Application.Current.FindResource("str_OperationSucceeded");
|
||||
public static string PARENTHETICAL_NONE =
|
||||
(string)Application.Current.FindResource("str_ParentheticalNone");
|
||||
public static string PLUGIN_DIR_FAIL_FMT =
|
||||
|
||||
Reference in New Issue
Block a user