-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMirroringType.cs
37 lines (37 loc) · 967 Bytes
/
MirroringType.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
namespace com.clusterrr.Famicom.Containers
{
/// <summary>
/// What CIRAM A10 is connected to
/// </summary>
public enum MirroringType
{
/// <summary>
/// PPU A11 (horizontal mirroring)
/// </summary>
Horizontal = 0,
/// <summary>
/// PPU A10 (vertical mirroring)
/// </summary>
Vertical = 1,
/// <summary>
/// Ground (one-screen A)
/// </summary>
OneScreenA = 2,
/// <summary>
/// Vcc (one-screen B)
/// </summary>
OneScreenB = 3,
/// <summary>
/// Extra memory has been added (four-screen)
/// </summary>
FourScreenVram = 4,
/// <summary>
/// Mapper controlled
/// </summary>
MapperControlled = 5, // for UNIF
/// <summary>
/// Unknown value
/// </summary>
Unknown = 0xff
};
}