Beispiel #1
0
        public void chip(model_t model)
        {
            maxRasters    = modelData[(int)model].rasterLines;
            cyclesPerLine = modelData[(int)model].cyclesPerLine;
            clock         = modelData[(int)model].clock;

            lp.setScreenSize(maxRasters, cyclesPerLine);

            reset();
        }
Beispiel #2
0
 public model_data_t(UInt32 rasterLines, UInt32 cyclesPerLine, ClockFunc clock)
 {
     this.rasterLines   = rasterLines;
     this.cyclesPerLine = cyclesPerLine;
     this.clock         = clock;
 }