- All Implemented Interfaces:
Serializable,Comparable<GBACartridge.DACSType>,Constable
- Enclosing interface:
- GBACartridge
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionintReturns the debugging handler's entry point address.static @Nullable GBACartridge.DACSTypeof(byte value)Returns the DACS type identified by the given value.intsize()Returns the DACS flash memory size.bytevalue()Returns the identifier for this DACS type.static GBACartridge.DACSTypeReturns the enum constant of this class with the specified name.static GBACartridge.DACSType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ONE_MBIT
-
EIGHT_MBIT
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
of
Returns the DACS type identified by the given value.- Parameters:
value- the DACS type identifier- Returns:
- the type with the given identifier, or
nullif 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
-