Skip to content

Commit

Permalink
Build 12
Browse files Browse the repository at this point in the history
Rewrote the memory wrapper
Now supports NTSC 1.02
  • Loading branch information
UltiNaruto committed Mar 17, 2020
1 parent ead8ea1 commit d263b4d
Show file tree
Hide file tree
Showing 13 changed files with 2,979 additions and 1,050 deletions.
116 changes: 65 additions & 51 deletions MPRandoAssist/Form1.Designer.cs

Large diffs are not rendered by default.

1,080 changes: 97 additions & 983 deletions MPRandoAssist/Form1.cs

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion MPRandoAssist/MPRandoAssist.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="MemoryUtils.cs" />
<Compile Include="Dialogs\PowerBombsCountDialog.cs">
<SubType>Form</SubType>
</Compile>
Expand All @@ -70,8 +69,17 @@
<Compile Include="Dialogs\MissileCountDialog.Designer.cs">
<DependentUpon>MissileCountDialog.cs</DependentUpon>
</Compile>
<Compile Include="Memory\Constants\GC.cs" />
<Compile Include="Memory\Constants\MP1_NTSC_1_00.cs" />
<Compile Include="Memory\Constants\MP1_NTSC_1_02.cs" />
<Compile Include="Memory\Constants\MP1_PAL.cs" />
<Compile Include="Memory\Constants\_MP1.cs" />
<Compile Include="Memory\Dolphin.cs" />
<Compile Include="Memory\MemStream.cs" />
<Compile Include="Memory\Utils.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="WinAPI\Imports.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
Expand Down
9 changes: 9 additions & 0 deletions MPRandoAssist/Memory/Constants/GC.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;

namespace Prime.Memory.Constants
{
class GC
{
public static readonly UInt32 RAMBaseAddress = 0x80000000;
}
}
Loading

0 comments on commit d263b4d

Please sign in to comment.