2012-11-27 05:11:40 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Computers.Commodore64.MOS
|
|
|
|
|
{
|
|
|
|
|
// vic ntsc
|
2012-12-05 21:07:51 +00:00
|
|
|
|
public class MOS6567 : Vic
|
2012-11-27 05:11:40 +00:00
|
|
|
|
{
|
2012-12-11 06:27:00 +00:00
|
|
|
|
static int[][] pipeline = new int[5][];
|
2012-11-27 05:11:40 +00:00
|
|
|
|
|
2012-12-05 21:07:51 +00:00
|
|
|
|
public MOS6567()
|
|
|
|
|
: base(65, 263, pipeline, 14318181 / 14)
|
2012-11-27 05:11:40 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|