1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-02-24 08:02:39 +00:00

Implemented ALU, most of Memory state machine.

This commit is contained in:
Josh Dersch
2015-08-20 18:02:01 -07:00
parent 5719ec4815
commit f1ffcb0547
12 changed files with 336 additions and 36 deletions

View File

@@ -5,6 +5,7 @@ using System.Text;
using System.Threading.Tasks;
using Contralto.CPU;
using Contralto.Memory;
namespace Contralto
{
@@ -16,6 +17,7 @@ namespace Contralto
while(true)
{
MemoryBus.Clock();
cpu.ExecuteNext();
}