Пример #1
0
        public override void Initialize()
        {
            var x86 = simCPU as CPUx86;

            simCPU.AddMemory(0x00000000, 0x000A0000, 1);             // First 640kb
            simCPU.AddMemory(VectorReset, 0x0000000F, 2);            // Vector Reset

            simCPU.AddInstruction(VectorReset, new SimInstruction(Opcode.Call, 32, SimOperand.CreateLabel(32, VectorCall), 4));
        }