2024-07-23 18:31:59 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace VirtualNes.Core
|
|
|
|
|
{
|
2024-07-25 11:03:58 +08:00
|
|
|
|
public abstract class Mapper
|
2024-07-23 18:31:59 +08:00
|
|
|
|
{
|
2024-07-25 11:03:58 +08:00
|
|
|
|
internal virtual void Clock(int cycles) { }
|
2024-07-23 18:31:59 +08:00
|
|
|
|
}
|
|
|
|
|
}
|