1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-02-04 15:43:29 +00:00

Refinement to CPU, implemented very rough diassembler and began annotation of official Xerox ucode sources with PROM addresses.

This commit is contained in:
Josh Dersch
2015-08-28 18:07:59 -07:00
parent 9c3ee3afac
commit 59d98d1909
11 changed files with 3086 additions and 87 deletions

View File

@@ -15,6 +15,13 @@ namespace Contralto
{
AltoCPU cpu = new AltoCPU();
for(int i=0;i<2048;i++)
{
MicroInstruction inst = new MicroInstruction(UCodeMemory.UCodeROM[i]);
Console.WriteLine("{0}: {1}", OctalHelpers.ToOctal(i), Disassembler.DisassembleInstruction(inst, TaskType.Emulator));
}
while(true)
{
MemoryBus.Clock();