Apple II - wire up memory domains, just System Bus currently
This commit is contained in:
parent
baff7319ac
commit
4bf37df018
|
@ -119,6 +119,9 @@
|
|||
<Compile Include="Computers\AppleII\AppleII.IEmulator.cs">
|
||||
<DependentUpon>AppleII.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Computers\AppleII\AppleII.IMemoryDomains.cs">
|
||||
<DependentUpon>AppleII.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Computers\AppleII\AppleII.IStatable.cs">
|
||||
<DependentUpon>AppleII.cs</DependentUpon>
|
||||
</Compile>
|
||||
|
|
|
@ -62,6 +62,8 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII
|
|||
ms.Position = 0;
|
||||
bool writeProtected = false; //!!!!!!!!!!!!!!!!!!!
|
||||
Jellyfish.Virtu.Services.StorageService.LoadFile(ms, stream => _machine.BootDiskII.Drives[0].InsertDisk("junk.dsk", stream, writeProtected));
|
||||
|
||||
SetupMemoryDomains();
|
||||
}
|
||||
|
||||
public List<GameInfo> GameInfoSet { get; private set; }
|
||||
|
|
Loading…
Reference in New Issue