using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS { public static class Chip6522 { public static Via Create(Func readPrA, Func readPrB) { return new Via(readPrA, readPrB); } public static Via Create(Func readClock, Func readData, Func readAtn, int driveNumber) { return new Via(readClock, readData, readAtn, driveNumber); } } }