1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-05-01 05:49:42 +00:00

Minor performance improvements. General cleanup. Fixed major (but subtle) issue with memory state machine (BravoX now works!). Updated readme and installer for 1.1 release.

This commit is contained in:
Josh Dersch
2016-10-17 14:32:22 -07:00
parent 39277a17a2
commit ae0896b362
14 changed files with 240 additions and 143 deletions

View File

@@ -50,9 +50,9 @@ namespace Contralto.CPU
return base.ExecuteInstruction(instruction);
}
protected override ushort GetBusSource(int bs)
protected override ushort GetBusSource(MicroInstruction instruction)
{
EthernetBusSource ebs = (EthernetBusSource)bs;
EthernetBusSource ebs = (EthernetBusSource)instruction.BS;
switch(ebs)
{