25 lines
385 B
C#
25 lines
385 B
C#
![]() |
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,
|
|||
|
}
|
|||
|
}
|