C64Lib.Memory.Drive1541Rom.Patch C# (CSharp) Метод

Patch() публичный Метод

public Patch ( ) : void
Результат void
        public void Patch()
        {
            // 1541
            _bytes[0x2ae4] = 0xea;		// Don't check ROM checksum
            _bytes[0x2ae5] = 0xea;
            _bytes[0x2ae8] = 0xea;
            _bytes[0x2ae9] = 0xea;
            _bytes[0x2c9b] = 0xf2;		// DOS idle loop
            _bytes[0x2c9c] = 0x00;
            _bytes[0x3594] = 0x20;		// Write sector
            _bytes[0x3595] = 0xf2;
            _bytes[0x3596] = 0xf5;
            _bytes[0x3597] = 0xf2;
            _bytes[0x3598] = 0x01;
            _bytes[0x3b0c] = 0xf2;		// Format track
            _bytes[0x3b0d] = 0x02;
        }