Last active
October 5, 2021 03:57
-
-
Save cbeust/9513f71e1a0f6ad2fc5ff920f4526c80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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