Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/BizHawk.Emulation.Cores/Computers/Commodore64/C64Format.cs
2 views
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace BizHawk.Emulation.Cores.Computers.Commodore64
{
    public enum C64Format
    {
        Unknown,
        D64,
        D71,
        D81,
        X64,
        G64,
        T64,
        TAP,
        CRT,
        P64,
        P00,
        D82,
        D80,
    }
}