Skip to content

Instantly share code, notes, and snippets.

@cbeust
Last active October 5, 2021 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbeust/9513f71e1a0f6ad2fc5ff920f4526c80 to your computer and use it in GitHub Desktop.
Save cbeust/9513f71e1a0f6ad2fc5ff920f4526c80 to your computer and use it in GitHub Desktop.
enum class Opcode(val opcode: Int, val opName: String, val size: Int) {
BRK(0x00, "BRK", 1),
JSR(0x20, "JSR", 3)
// …
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment