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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user