C64Lib.Core.Job1541.Job1541 C# (CSharp) Method

Job1541() public method

public Job1541 ( Drive1541Ram RAM ) : System
RAM C64Lib.Memory.Drive1541Ram
return System
        public Job1541(Drive1541Ram RAM)
        {
            ram = RAM;

            the_file = null;

            gcr_data = new byte[GCR_DISK_SIZE];
            gcr_ptr = gcr_track_start = 0;
            gcr_track_end = gcr_track_start + GCR_TRACK_SIZE;
            current_halftrack = 2;

            disk_changed = true;

            // TODO
            //if (GlobalPrefs.ThePrefs.Emul1541Proc)
            //    open_d64_file(GlobalPrefs.ThePrefs.DrivePath[0]);
        }