19 lines
369 B
C#
19 lines
369 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace BizHawk.Emulation.Computers.Commodore64.MOS
|
|||
|
{
|
|||
|
// vic ntsc
|
|||
|
public class MOS6567 : Vic, IStandardIO
|
|||
|
{
|
|||
|
static uint[][] pipeline = new uint[5][];
|
|||
|
|
|||
|
public MOS6567(C64Chips newChips)
|
|||
|
: base(newChips, 65, 263, pipeline, 14318181 / 14)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|