mirror of
https://github.com/livingcomputermuseum/ContrAlto.git
synced 2026-04-16 00:21:11 +00:00
Minor bugfixes, introduced a new timing infrastructure and moved DiskController over to it. Minor performance improvements; now running at 110% speed. Display timing is still too slow.
This commit is contained in:
@@ -1,8 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Contralto.CPU
|
||||
{
|
||||
@@ -37,12 +33,11 @@ namespace Contralto.CPU
|
||||
break;
|
||||
|
||||
case DisplayHorizontalF2.SETMODE:
|
||||
// NO-op for now
|
||||
_cpu._system.DisplayController.SETMODE(_busData);
|
||||
break;
|
||||
|
||||
default:
|
||||
throw new InvalidOperationException(String.Format("Unhandled display word F2 {0}.", dh2));
|
||||
break;
|
||||
throw new InvalidOperationException(String.Format("Unhandled display word F2 {0}.", dh2));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user