Skip to content

Commit

Permalink
Fixed the interrupt checkboxes and the tooltips in the CPU Window to …
Browse files Browse the repository at this point in the history
…match the F256 or C256 registers.

Fixed an issue when loading .bin files - this now goes only to RAM, not devices.
Re-adjusted controls position in the Main and CPU windows and locked the forms.
Fixed issue when the machine was left in Jr(816) it would restart in C mode.
Changing the board version in the Main Window now is properly reflected in the CPU Window.
  • Loading branch information
Daniel Tremblay committed Jun 26, 2023
1 parent 066396d commit dd9a7c9
Show file tree
Hide file tree
Showing 12 changed files with 858 additions and 360 deletions.
3 changes: 2 additions & 1 deletion Main/FoenixSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,8 @@ public bool ResetCPU(string filename)
}
} while (!isAddressValid);
// Copy the data into memory
MemMgr.CopyBuffer(DataBuffer, 0, DataStartAddress, flen);
MemMgr.RAM.CopyBuffer(DataBuffer, 0, DataStartAddress, flen);
//MemMgr.CopyBuffer(DataBuffer, 0, DataStartAddress, flen);
}

// Load the .LST file if it exists
Expand Down
4 changes: 2 additions & 2 deletions Main/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.6.0.7")]
[assembly: AssemblyFileVersion("0.6.0.7")]
[assembly: AssemblyVersion("0.6.0.8")]
[assembly: AssemblyFileVersion("0.6.0.8")]
10 changes: 5 additions & 5 deletions Main/UI/About.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions Main/UI/About.resx
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,15 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="CloseButton.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="FoenixLogo.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="FoenixLogo.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
Expand Down Expand Up @@ -1114,4 +1123,7 @@
hBAfQ4kTQoiPocQJIcS3nD37/z2zucqSCtrlAAAAAElFTkSuQmCC
</value>
</data>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>
611 changes: 389 additions & 222 deletions Main/UI/CPUWindow.Designer.cs

Large diffs are not rendered by default.

Loading

0 comments on commit dd9a7c9

Please sign in to comment.