Enum Class GBACartridge.DACSType

java.lang.Object
java.lang.Enum<GBACartridge.DACSType>
me.hugmanrique.cartage.gba.GBACartridge.DACSType
All Implemented Interfaces:
Serializable, Comparable<GBACartridge.DACSType>, Constable
Enclosing interface:
GBACartridge

public static enum GBACartridge.DACSType extends Enum<GBACartridge.DACSType>
Indicates the entry point and size of the Debugging and Communication System (DACS) memory, used by the Nintendo hardware debugger when the debugging handler is enabled.

In practice, most cartridges do not contain any memory at these addresses.

See Also:
to learn how to enable the debugging handler
  • Enum Constant Details

  • Method Details

    • values

      public static GBACartridge.DACSType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static GBACartridge.DACSType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • of

      public static @Nullable GBACartridge.DACSType of(byte value)
      Returns the DACS type identified by the given value.
      Parameters:
      value - the DACS type identifier
      Returns:
      the type with the given identifier, or null if unknown
    • value

      public byte value()
      Returns the identifier for this DACS type.
      Returns:
      the identifier
    • size

      public int size()
      Returns the DACS flash memory size.
      Returns:
      the memory size, in bytes
    • entryPoint

      public int entryPoint()
      Returns the debugging handler's entry point address.
      Returns:
      the DACS entry point address, in bytes