Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IFdsBlock.cs - github.com/ClusterM/nes-containers.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08143d3149df33bbb23b6acbcd6a3f665f58065d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace com.clusterrr.Famicom.Containers
{
    public interface IFdsBlock
    {
        bool CrcOk { get; set; }
        bool EndOfHeadMeet { get; set; }
        byte[] ToBytes();
    }
}