diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-06-15 22:10:47 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-06-15 22:10:47 +0100 |
| commit | d8dbfe55f4741a9cf70c1b95762461e08eb08f22 (patch) | |
| tree | 779df3fc4192b251da8f9f1e9e712376d9f096c9 /src/main/kotlin/cpu/Operation.kt | |
| parent | 22f3463e3128947df69cb6444c82bd73350d5cc5 (diff) | |
| download | KGB-d8dbfe55f4741a9cf70c1b95762461e08eb08f22.tar.xz KGB-d8dbfe55f4741a9cf70c1b95762461e08eb08f22.zip | |
Add all 8-Bit Load opcodes
Diffstat (limited to 'src/main/kotlin/cpu/Operation.kt')
| -rw-r--r-- | src/main/kotlin/cpu/Operation.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/cpu/Operation.kt b/src/main/kotlin/cpu/Operation.kt index 71c3076..2291ef8 100644 --- a/src/main/kotlin/cpu/Operation.kt +++ b/src/main/kotlin/cpu/Operation.kt @@ -2,4 +2,4 @@ package cpu import ram.Ram -class Operation(val name: String, val length: Int, val cycles: Int, val command: (Registers, Ram, List<Int>) -> Unit)
\ No newline at end of file +class Operation(val name: String, val length: Int, val cycles: Int, val command: (Registers, Ram, IntArray) -> Unit)
\ No newline at end of file |