Esempio n. 1
0
 public Z80Disassembler(byte[] memory)
 {
     Memory                  = memory;
     Registers               = new Z80RegisterFile();
     ControlLines            = new Z80CPULines();
     InterruptsBeingServiced = new Stack <ushort>();
 }
Esempio n. 2
0
        public Z80CPU(Z80CPULines lines)
        {
            Registers               = new Z80RegisterFile();
            ControlLines            = lines;
            InterruptsBeingServiced = new Stack <ushort>();

            ControlLines.AttachCpu(this);
        }