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

MirroringType.cs - github.com/ClusterM/nes-containers.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55a65385921809d9bca1aafa08c0dbd02295daf9 (plain)
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
    };
}