@@ -1,1404 +0,0 @@ |
| 1 |
{+-----------------------------------------------------------------------------+ |
|
|
| 2 |
| Author: Christian Hackbart |
|
|
| 3 |
| Description: basic Debugger functions |
|
|
| 4 |
| Copyright (c) 2000 Christian Hackbart |
|
|
| 5 |
| last Changes: 31.10.2000 |
|
|
| 6 |
| |
|
|
| 7 |
| http://www.tu-ilmenau.de/~hackbart |
|
|
| 8 |
+----------------------------------------------------------------------------+ |
|
|
| 9 |
| This Unit is based on YaSE written by myself a few years ago. |
|
|
| 10 |
| It must be changed !! Because this debugger is based on a "real" Z80 |
|
|
| 11 |
| ED-Instructions can be removed, also a few other instructions. |
|
|
| 12 |
+----------------------------------------------------------------------------+} |
|
|
| 13 |
|
|
|
| 14 |
unit debugger; |
|
|
| 15 |
|
|
|
| 16 |
{$MODE Delphi} |
|
|
| 17 |
|
|
|
| 18 |
interface |
|
|
| 19 |
|
|
|
| 20 |
type |
|
|
| 21 |
format = record {Fr opcodes} |
|
|
| 22 |
op: string[18]; |
|
|
| 23 |
leng: shortint |
|
|
| 24 |
end; |
|
|
| 25 |
|
|
|
| 26 |
const |
|
|
| 27 |
major: array[0..255] of format = ( |
|
|
| 28 |
(op: 'nop'; leng: 0), |
|
|
| 29 |
(op: 'ld bc,####'; leng: 2), |
|
|
| 30 |
(op: 'ld bc,a'; leng: 0), |
|
|
| 31 |
(op: 'inc bc'; leng: 0), |
|
|
| 32 |
(op: 'inc b'; leng: 0), |
|
|
| 33 |
(op: 'dec b'; leng: 0), |
|
|
| 34 |
(op: 'ld b,##'; leng: 1), |
|
|
| 35 |
(op: 'rlc a'; leng: 0), |
|
|
| 36 |
(op: 'ex af,af'''; leng: 0), |
|
|
| 37 |
(op: 'add hl,bc'; leng: 0), |
|
|
| 38 |
(op: 'ld a,(bc)'; leng: 0), |
|
|
| 39 |
(op: 'dec bc'; leng: 0), |
|
|
| 40 |
(op: 'inc c'; leng: 0), |
|
|
| 41 |
(op: 'dec c'; leng: 0), |
|
|
| 42 |
(op: 'ld c,##'; leng: 1), |
|
|
| 43 |
(op: 'rrc a'; leng: 0), |
|
|
| 44 |
(op: 'djnz ####'; leng: -1), |
|
|
| 45 |
(op: 'ld de,####'; leng: 2), |
|
|
| 46 |
(op: 'ld (de),a'; leng: 0), |
|
|
| 47 |
(op: 'inc de'; leng: 0), |
|
|
| 48 |
(op: 'inc d'; leng: 0), |
|
|
| 49 |
(op: 'dec d'; leng: 0), |
|
|
| 50 |
(op: 'ld d,##'; leng: 1), |
|
|
| 51 |
(op: 'rla'; leng: 0), |
|
|
| 52 |
(op: 'jr ####'; leng: -1), |
|
|
| 53 |
(op: 'add hl,de'; leng: 0), |
|
|
| 54 |
(op: 'ld a,(de)'; leng: 0), |
|
|
| 55 |
(op: 'dec de'; leng: 0), |
|
|
| 56 |
(op: 'inc e'; leng: 0), |
|
|
| 57 |
(op: 'dec e'; leng: 0), |
|
|
| 58 |
(op: 'ld e,##'; leng: 1), |
|
|
| 59 |
(op: 'rra'; leng: 0), |
|
|
| 60 |
(op: 'jr nz,####'; leng: -1), |
|
|
| 61 |
(op: 'ld hl,####'; leng: 2), |
|
|
| 62 |
(op: 'ld (####),hl'; leng: 2), |
|
|
| 63 |
(op: 'inc hl'; leng: 0), |
|
|
| 64 |
(op: 'inc h'; leng: 0), |
|
|
| 65 |
(op: 'dec h'; leng: 0), |
|
|
| 66 |
(op: 'ld h,##'; leng: 1), |
|
|
| 67 |
(op: 'daa'; leng: 0), |
|
|
| 68 |
(op: 'jr z,####'; leng: -1), |
|
|
| 69 |
(op: 'add hl,hl'; leng: 0), |
|
|
| 70 |
(op: 'ld hl,(####)'; leng: 2), |
|
|
| 71 |
(op: 'dec hl'; leng: 0), |
|
|
| 72 |
(op: 'inc l'; leng: 0), |
|
|
| 73 |
(op: 'dec l'; leng: 0), |
|
|
| 74 |
(op: 'ld l,##'; leng: 1), |
|
|
| 75 |
(op: 'cpl'; leng: 0), |
|
|
| 76 |
(op: 'jr nc,####'; leng: -1), |
|
|
| 77 |
(op: 'ld sp,####'; leng: 2), |
|
|
| 78 |
(op: 'ld (####),a'; leng: 2), |
|
|
| 79 |
(op: 'inc sp'; leng: 0), |
|
|
| 80 |
(op: 'inc (hl)'; leng: 0), |
|
|
| 81 |
(op: 'dec (hl)'; leng: 0), |
|
|
| 82 |
(op: 'ld (hl),##'; leng: 1), |
|
|
| 83 |
(op: 'scf'; leng: 0), |
|
|
| 84 |
(op: 'jr c,####'; leng: -1), |
|
|
| 85 |
(op: 'add hl,sp'; leng: 0), |
|
|
| 86 |
(op: 'ld a,(####)'; leng: 2), |
|
|
| 87 |
(op: 'dec sp'; leng: 0), |
|
|
| 88 |
(op: 'inc a'; leng: 0), |
|
|
| 89 |
(op: 'dec a'; leng: 0), |
|
|
| 90 |
(op: 'ld a,##'; leng: 1), |
|
|
| 91 |
(op: 'ccf'; leng: 0), |
|
|
| 92 |
(op: 'ld b,b'; leng: 0), |
|
|
| 93 |
(op: 'ld b,c'; leng: 0), |
|
|
| 94 |
(op: 'ld b,d'; leng: 0), |
|
|
| 95 |
(op: 'ld b,e'; leng: 0), |
|
|
| 96 |
(op: 'ld b,h'; leng: 0), |
|
|
| 97 |
(op: 'ld b,l'; leng: 0), |
|
|
| 98 |
(op: 'ld b,(hl)'; leng: 0), |
|
|
| 99 |
(op: 'ld b,a'; leng: 0), |
|
|
| 100 |
(op: 'ld c,b'; leng: 0), |
|
|
| 101 |
(op: 'ld c,c'; leng: 0), |
|
|
| 102 |
(op: 'ld c,d'; leng: 0), |
|
|
| 103 |
(op: 'ld c,e'; leng: 0), |
|
|
| 104 |
(op: 'ld c,h'; leng: 0), |
|
|
| 105 |
(op: 'ld c,l'; leng: 0), |
|
|
| 106 |
(op: 'ld c,(hl)'; leng: 0), |
|
|
| 107 |
(op: 'ld c,a'; leng: 0), |
|
|
| 108 |
(op: 'ld d,b'; leng: 0), |
|
|
| 109 |
(op: 'ld d,c'; leng: 0), |
|
|
| 110 |
(op: 'ld d,d'; leng: 0), |
|
|
| 111 |
(op: 'ld d,e'; leng: 0), |
|
|
| 112 |
(op: 'ld d,h'; leng: 0), |
|
|
| 113 |
(op: 'ld d,l'; leng: 0), |
|
|
| 114 |
(op: 'ld d,(hl)'; leng: 0), |
|
|
| 115 |
(op: 'ld d,a'; leng: 0), |
|
|
| 116 |
(op: 'ld e,b'; leng: 0), |
|
|
| 117 |
(op: 'ld e,c'; leng: 0), |
|
|
| 118 |
(op: 'ld e,d'; leng: 0), |
|
|
| 119 |
(op: 'ld e,e'; leng: 0), |
|
|
| 120 |
(op: 'ld e,h'; leng: 0), |
|
|
| 121 |
(op: 'ld e,l'; leng: 0), |
|
|
| 122 |
(op: 'ld e,(hl)'; leng: 0), |
|
|
| 123 |
(op: 'ld e,a'; leng: 0), |
|
|
| 124 |
(op: 'ld h,b'; leng: 0), |
|
|
| 125 |
(op: 'ld h,c'; leng: 0), |
|
|
| 126 |
(op: 'ld h,d'; leng: 0), |
|
|
| 127 |
(op: 'ld h,e'; leng: 0), |
|
|
| 128 |
(op: 'ld h,h'; leng: 0), |
|
|
| 129 |
(op: 'ld h,l'; leng: 0), |
|
|
| 130 |
(op: 'ld h,(hl)'; leng: 0), |
|
|
| 131 |
(op: 'ld h,a'; leng: 0), |
|
|
| 132 |
(op: 'ld l,b'; leng: 0), |
|
|
| 133 |
(op: 'ld l,c'; leng: 0), |
|
|
| 134 |
(op: 'ld l,d'; leng: 0), |
|
|
| 135 |
(op: 'ld l,e'; leng: 0), |
|
|
| 136 |
(op: 'ld l,h'; leng: 0), |
|
|
| 137 |
(op: 'ld l,l'; leng: 0), |
|
|
| 138 |
(op: 'ld l,(hl)'; leng: 0), |
|
|
| 139 |
(op: 'ld l,a'; leng: 0), |
|
|
| 140 |
(op: 'ld (hl),b'; leng: 0), |
|
|
| 141 |
(op: 'ld (hl),c'; leng: 0), |
|
|
| 142 |
(op: 'ld (hl),d'; leng: 0), |
|
|
| 143 |
(op: 'ld (hl),e'; leng: 0), |
|
|
| 144 |
(op: 'ld (hl),h'; leng: 0), |
|
|
| 145 |
(op: 'ld (hl),l'; leng: 0), |
|
|
| 146 |
(op: 'halt'; leng: 0), |
|
|
| 147 |
(op: 'ld (hl),a'; leng: 0), |
|
|
| 148 |
(op: 'ld a,b'; leng: 0), |
|
|
| 149 |
(op: 'ld a,c'; leng: 0), |
|
|
| 150 |
(op: 'ld a,d'; leng: 0), |
|
|
| 151 |
(op: 'ld a,e'; leng: 0), |
|
|
| 152 |
(op: 'ld a,h'; leng: 0), |
|
|
| 153 |
(op: 'ld a,l'; leng: 0), |
|
|
| 154 |
(op: 'ld a,(hl)'; leng: 0), |
|
|
| 155 |
(op: 'ld a,a'; leng: 0), |
|
|
| 156 |
(op: 'add a,b'; leng: 0), |
|
|
| 157 |
(op: 'add a,c'; leng: 0), |
|
|
| 158 |
(op: 'add a,d'; leng: 0), |
|
|
| 159 |
(op: 'add a,e'; leng: 0), |
|
|
| 160 |
(op: 'add a,h'; leng: 0), |
|
|
| 161 |
(op: 'add a,l'; leng: 0), |
|
|
| 162 |
(op: 'add a,(hl)'; leng: 0), |
|
|
| 163 |
(op: 'add a,a'; leng: 0), |
|
|
| 164 |
(op: 'adc a,b'; leng: 0), |
|
|
| 165 |
(op: 'adc a,c'; leng: 0), |
|
|
| 166 |
(op: 'adc a,d'; leng: 0), |
|
|
| 167 |
(op: 'adc a,e'; leng: 0), |
|
|
| 168 |
(op: 'adc a,h'; leng: 0), |
|
|
| 169 |
(op: 'adc a,l'; leng: 0), |
|
|
| 170 |
(op: 'adc a,(hl)'; leng: 0), |
|
|
| 171 |
(op: 'adc a,a'; leng: 0), |
|
|
| 172 |
(op: 'sub b'; leng: 0), |
|
|
| 173 |
(op: 'sub c'; leng: 0), |
|
|
| 174 |
(op: 'sub d'; leng: 0), |
|
|
| 175 |
(op: 'sub e'; leng: 0), |
|
|
| 176 |
(op: 'sub h'; leng: 0), |
|
|
| 177 |
(op: 'sub l'; leng: 0), |
|
|
| 178 |
(op: 'sub (hl)'; leng: 0), |
|
|
| 179 |
(op: 'sub a'; leng: 0), |
|
|
| 180 |
(op: 'sbc a,b'; leng: 0), |
|
|
| 181 |
(op: 'sbc a,c'; leng: 0), |
|
|
| 182 |
(op: 'sbc a,d'; leng: 0), |
|
|
| 183 |
(op: 'sbc a,e'; leng: 0), |
|
|
| 184 |
(op: 'sbc a,h'; leng: 0), |
|
|
| 185 |
(op: 'sbc a,l'; leng: 0), |
|
|
| 186 |
(op: 'sbc a,(hl)'; leng: 0), |
|
|
| 187 |
(op: 'sbc a,a'; leng: 0), |
|
|
| 188 |
(op: 'and b'; leng: 0), |
|
|
| 189 |
(op: 'and c'; leng: 0), |
|
|
| 190 |
(op: 'and d'; leng: 0), |
|
|
| 191 |
(op: 'and e'; leng: 0), |
|
|
| 192 |
(op: 'and h'; leng: 0), |
|
|
| 193 |
(op: 'and l'; leng: 0), |
|
|
| 194 |
(op: 'and (hl)'; leng: 0), |
|
|
| 195 |
(op: 'and a'; leng: 0), |
|
|
| 196 |
(op: 'xor b'; leng: 0), |
|
|
| 197 |
(op: 'xor c'; leng: 0), |
|
|
| 198 |
(op: 'xor d'; leng: 0), |
|
|
| 199 |
(op: 'xor e'; leng: 0), |
|
|
| 200 |
(op: 'xor h'; leng: 0), |
|
|
| 201 |
(op: 'xor l'; leng: 0), |
|
|
| 202 |
(op: 'xor (hl)'; leng: 0), |
|
|
| 203 |
(op: 'xor a'; leng: 0), |
|
|
| 204 |
(op: 'or b'; leng: 0), |
|
|
| 205 |
(op: 'or c'; leng: 0), |
|
|
| 206 |
(op: 'or d'; leng: 0), |
|
|
| 207 |
(op: 'or e'; leng: 0), |
|
|
| 208 |
(op: 'or h'; leng: 0), |
|
|
| 209 |
(op: 'or l'; leng: 0), |
|
|
| 210 |
(op: 'or (hl)'; leng: 0), |
|
|
| 211 |
(op: 'or a'; leng: 0), |
|
|
| 212 |
(op: 'cp b'; leng: 0), |
|
|
| 213 |
(op: 'cp c'; leng: 0), |
|
|
| 214 |
(op: 'cp d'; leng: 0), |
|
|
| 215 |
(op: 'cp e'; leng: 0), |
|
|
| 216 |
(op: 'cp h'; leng: 0), |
|
|
| 217 |
(op: 'cp l'; leng: 0), |
|
|
| 218 |
(op: 'cp (hl)'; leng: 0), |
|
|
| 219 |
(op: 'cp a'; leng: 0), |
|
|
| 220 |
(op: 'ret nz'; leng: 0), |
|
|
| 221 |
(op: 'pop bc'; leng: 0), |
|
|
| 222 |
(op: 'jp nz,####'; leng: 2), |
|
|
| 223 |
(op: 'jp ####'; leng: 2), |
|
|
| 224 |
(op: 'call nz,####'; leng: 2), |
|
|
| 225 |
(op: 'push bc'; leng: 0), |
|
|
| 226 |
(op: 'add a,##'; leng: 1), |
|
|
| 227 |
(op: 'rst 0'; leng: 0), |
|
|
| 228 |
(op: 'ret z'; leng: 0), |
|
|
| 229 |
(op: 'ret'; leng: 0), |
|
|
| 230 |
(op: 'jp z,####'; leng: 2), |
|
|
| 231 |
(op: ''; leng: 0), |
|
|
| 232 |
(op: 'call z,####'; leng: 2), |
|
|
| 233 |
(op: 'call ####'; leng: 2), |
|
|
| 234 |
(op: 'adc a,##'; leng: 1), |
|
|
| 235 |
(op: 'rst 8'; leng: 0), |
|
|
| 236 |
(op: 'ret nc'; leng: 0), |
|
|
| 237 |
(op: 'pop de'; leng: 0), |
|
|
| 238 |
(op: 'jp nc,####'; leng: 2), |
|
|
| 239 |
(op: 'out (##),a'; leng: 1), |
|
|
| 240 |
(op: 'call nc,####'; leng: 2), |
|
|
| 241 |
(op: 'push de'; leng: 0), |
|
|
| 242 |
(op: 'sub ##'; leng: 1), |
|
|
| 243 |
(op: 'rst 10h'; leng: 0), |
|
|
| 244 |
(op: 'ret c'; leng: 0), |
|
|
| 245 |
(op: 'exx'; leng: 0), |
|
|
| 246 |
(op: 'jp c,####'; leng: 2), |
|
|
| 247 |
(op: 'in a,(##)'; leng: 1), |
|
|
| 248 |
(op: 'call c,####'; leng: 2), |
|
|
| 249 |
(op: ''; leng: 1), |
|
|
| 250 |
(op: 'sbc a,##'; leng: 1), |
|
|
| 251 |
(op: 'rst 18h'; leng: 0), |
|
|
| 252 |
(op: 'ret po'; leng: 0), |
|
|
| 253 |
(op: 'pop hl'; leng: 0), |
|
|
| 254 |
(op: 'jp po,####'; leng: 2), |
|
|
| 255 |
(op: 'ex (sp),hl'; leng: 0), |
|
|
| 256 |
(op: 'call po,####'; leng: 2), |
|
|
| 257 |
(op: 'push hl'; leng: 0), |
|
|
| 258 |
(op: 'and ##'; leng: 1), |
|
|
| 259 |
(op: 'rst 20h'; leng: 0), |
|
|
| 260 |
(op: 'ret pe'; leng: 0), |
|
|
| 261 |
(op: 'jp (hl)'; leng: 0), |
|
|
| 262 |
(op: 'jp pe,####'; leng: 2), |
|
|
| 263 |
(op: 'ex de,hl'; leng: 0), |
|
|
| 264 |
(op: 'call pe,####'; leng: 2), |
|
|
| 265 |
(op: ''; leng: 2), |
|
|
| 266 |
(op: 'xor ##'; leng: 1), |
|
|
| 267 |
(op: 'rst 28h'; leng: 0), |
|
|
| 268 |
(op: 'ret p'; leng: 0), |
|
|
| 269 |
(op: 'pop af'; leng: 0), |
|
|
| 270 |
(op: 'jp p,####'; leng: 2), |
|
|
| 271 |
(op: 'di'; leng: 0), |
|
|
| 272 |
(op: 'call p,####'; leng: 2), |
|
|
| 273 |
(op: 'push af'; leng: 0), |
|
|
| 274 |
(op: 'or ##'; leng: 1), |
|
|
| 275 |
(op: 'rst 30h'; leng: 0), |
|
|
| 276 |
(op: 'ret m'; leng: 0), |
|
|
| 277 |
(op: 'ld sp,hl'; leng: 0), |
|
|
| 278 |
(op: 'jp m,####'; leng: 2), |
|
|
| 279 |
(op: 'ei'; leng: 0), |
|
|
| 280 |
(op: 'call m,####'; leng: 2), |
|
|
| 281 |
(op: ''; leng: 1), |
|
|
| 282 |
(op: 'cp ##'; leng: 1), |
|
|
| 283 |
(op: 'rst 38h'; leng: 0)); |
|
|
| 284 |
|
|
|
| 285 |
const |
|
|
| 286 |
minor: array[0..3, 0..255] of format = (( |
|
|
| 287 |
(op: 'rlc b'; leng: 0), |
|
|
| 288 |
(op: 'rlc c'; leng: 0), |
|
|
| 289 |
(op: 'rlc d'; leng: 0), |
|
|
| 290 |
(op: 'rlc e'; leng: 0), |
|
|
| 291 |
(op: 'rlc h'; leng: 0), |
|
|
| 292 |
(op: 'rlc l'; leng: 0), |
|
|
| 293 |
(op: 'rlc (hl)'; leng: 0), |
|
|
| 294 |
(op: 'rlc a'; leng: 0), |
|
|
| 295 |
(op: 'rrc b'; leng: 0), |
|
|
| 296 |
(op: 'rrc c'; leng: 0), |
|
|
| 297 |
(op: 'rrc d'; leng: 0), |
|
|
| 298 |
(op: 'rrc e'; leng: 0), |
|
|
| 299 |
(op: 'rrc h'; leng: 0), |
|
|
| 300 |
(op: 'rrc l'; leng: 0), |
|
|
| 301 |
(op: 'rrc (hl)'; leng: 0), |
|
|
| 302 |
(op: 'rrc a'; leng: 0), |
|
|
| 303 |
(op: 'rl b'; leng: 0), |
|
|
| 304 |
(op: 'rl c'; leng: 0), |
|
|
| 305 |
(op: 'rl d'; leng: 0), |
|
|
| 306 |
(op: 'rl e'; leng: 0), |
|
|
| 307 |
(op: 'rl h'; leng: 0), |
|
|
| 308 |
(op: 'rl l'; leng: 0), |
|
|
| 309 |
(op: 'rl (hl)'; leng: 0), |
|
|
| 310 |
(op: 'rl a'; leng: 0), |
|
|
| 311 |
(op: 'rr b'; leng: 0), |
|
|
| 312 |
(op: 'rr c'; leng: 0), |
|
|
| 313 |
(op: 'rr d'; leng: 0), |
|
|
| 314 |
(op: 'rr e'; leng: 0), |
|
|
| 315 |
(op: 'rr h'; leng: 0), |
|
|
| 316 |
(op: 'rr l'; leng: 0), |
|
|
| 317 |
(op: 'rr (hl)'; leng: 0), |
|
|
| 318 |
(op: 'rr a'; leng: 0), |
|
|
| 319 |
(op: 'sla b'; leng: 0), |
|
|
| 320 |
(op: 'sla c'; leng: 0), |
|
|
| 321 |
(op: 'sla d'; leng: 0), |
|
|
| 322 |
(op: 'sla e'; leng: 0), |
|
|
| 323 |
(op: 'sla h'; leng: 0), |
|
|
| 324 |
(op: 'sla l'; leng: 0), |
|
|
| 325 |
(op: 'sla (hl)'; leng: 0), |
|
|
| 326 |
(op: 'sla a'; leng: 0), |
|
|
| 327 |
(op: 'sra b'; leng: 0), |
|
|
| 328 |
(op: 'sra c'; leng: 0), |
|
|
| 329 |
(op: 'sra d'; leng: 0), |
|
|
| 330 |
(op: 'sra e'; leng: 0), |
|
|
| 331 |
(op: 'sra h'; leng: 0), |
|
|
| 332 |
(op: 'sra l'; leng: 0), |
|
|
| 333 |
(op: 'sra (hl)'; leng: 0), |
|
|
| 334 |
(op: 'sra a'; leng: 0), |
|
|
| 335 |
(op: 'slai b'; leng: 0), |
|
|
| 336 |
(op: 'slai c'; leng: 0), |
|
|
| 337 |
(op: 'slai d'; leng: 0), |
|
|
| 338 |
(op: 'slai e'; leng: 0), |
|
|
| 339 |
(op: 'slai h'; leng: 0), |
|
|
| 340 |
(op: 'slai l'; leng: 0), |
|
|
| 341 |
(op: 'slai (hl)'; leng: 0), |
|
|
| 342 |
(op: 'slai a'; leng: 0), |
|
|
| 343 |
(op: 'srl b'; leng: 0), |
|
|
| 344 |
(op: 'srl c'; leng: 0), |
|
|
| 345 |
(op: 'srl d'; leng: 0), |
|
|
| 346 |
(op: 'srl e'; leng: 0), |
|
|
| 347 |
(op: 'srl h'; leng: 0), |
|
|
| 348 |
(op: 'srl l'; leng: 0), |
|
|
| 349 |
(op: 'srl (hl)'; leng: 0), |
|
|
| 350 |
(op: 'srl a'; leng: 0), |
|
|
| 351 |
(op: 'bit 0,b'; leng: 0), |
|
|
| 352 |
(op: 'bit 0,c'; leng: 0), |
|
|
| 353 |
(op: 'bit 0,d'; leng: 0), |
|
|
| 354 |
(op: 'bit 0,e'; leng: 0), |
|
|
| 355 |
(op: 'bit 0,h'; leng: 0), |
|
|
| 356 |
(op: 'bit 0,l'; leng: 0), |
|
|
| 357 |
(op: 'bit 0,(hl)'; leng: 0), |
|
|
| 358 |
(op: 'bit 0,a'; leng: 0), |
|
|
| 359 |
(op: 'bit 1,b'; leng: 0), |
|
|
| 360 |
(op: 'bit 1,c'; leng: 0), |
|
|
| 361 |
(op: 'bit 1,d'; leng: 0), |
|
|
| 362 |
(op: 'bit 1,e'; leng: 0), |
|
|
| 363 |
(op: 'bit 1,h'; leng: 0), |
|
|
| 364 |
(op: 'bit 1,l'; leng: 0), |
|
|
| 365 |
(op: 'bit 1,(hl)'; leng: 0), |
|
|
| 366 |
(op: 'bit 1,a'; leng: 0), |
|
|
| 367 |
(op: 'bit 2,b'; leng: 0), |
|
|
| 368 |
(op: 'bit 2,c'; leng: 0), |
|
|
| 369 |
(op: 'bit 2,d'; leng: 0), |
|
|
| 370 |
(op: 'bit 2,e'; leng: 0), |
|
|
| 371 |
(op: 'bit 2,h'; leng: 0), |
|
|
| 372 |
(op: 'bit 2,l'; leng: 0), |
|
|
| 373 |
(op: 'bit 2,(hl)'; leng: 0), |
|
|
| 374 |
(op: 'bit 2,a'; leng: 0), |
|
|
| 375 |
(op: 'bit 3,b'; leng: 0), |
|
|
| 376 |
(op: 'bit 3,c'; leng: 0), |
|
|
| 377 |
(op: 'bit 3,d'; leng: 0), |
|
|
| 378 |
(op: 'bit 3,e'; leng: 0), |
|
|
| 379 |
(op: 'bit 3,h'; leng: 0), |
|
|
| 380 |
(op: 'bit 3,l'; leng: 0), |
|
|
| 381 |
(op: 'bit 3,(hl)'; leng: 0), |
|
|
| 382 |
(op: 'bit 3,a'; leng: 0), |
|
|
| 383 |
(op: 'bit 4,b'; leng: 0), |
|
|
| 384 |
(op: 'bit 4,c'; leng: 0), |
|
|
| 385 |
(op: 'bit 4,d'; leng: 0), |
|
|
| 386 |
(op: 'bit 4,e'; leng: 0), |
|
|
| 387 |
(op: 'bit 4,h'; leng: 0), |
|
|
| 388 |
(op: 'bit 4,l'; leng: 0), |
|
|
| 389 |
(op: 'bit 4,(hl)'; leng: 0), |
|
|
| 390 |
(op: 'bit 4,a'; leng: 0), |
|
|
| 391 |
(op: 'bit 5,b'; leng: 0), |
|
|
| 392 |
(op: 'bit 5,c'; leng: 0), |
|
|
| 393 |
(op: 'bit 5,d'; leng: 0), |
|
|
| 394 |
(op: 'bit 5,e'; leng: 0), |
|
|
| 395 |
(op: 'bit 5,h'; leng: 0), |
|
|
| 396 |
(op: 'bit 5,l'; leng: 0), |
|
|
| 397 |
(op: 'bit 5,(hl)'; leng: 0), |
|
|
| 398 |
(op: 'bit 5,a'; leng: 0), |
|
|
| 399 |
(op: 'bit 6,b'; leng: 0), |
|
|
| 400 |
(op: 'bit 6,c'; leng: 0), |
|
|
| 401 |
(op: 'bit 6,d'; leng: 0), |
|
|
| 402 |
(op: 'bit 6,e'; leng: 0), |
|
|
| 403 |
(op: 'bit 6,h'; leng: 0), |
|
|
| 404 |
(op: 'bit 6,l'; leng: 0), |
|
|
| 405 |
(op: 'bit 6,(hl)'; leng: 0), |
|
|
| 406 |
(op: 'bit 6,a'; leng: 0), |
|
|
| 407 |
(op: 'bit 7,b'; leng: 0), |
|
|
| 408 |
(op: 'bit 7,c'; leng: 0), |
|
|
| 409 |
(op: 'bit 7,d'; leng: 0), |
|
|
| 410 |
(op: 'bit 7,e'; leng: 0), |
|
|
| 411 |
(op: 'bit 7,h'; leng: 0), |
|
|
| 412 |
(op: 'bit 7,l'; leng: 0), |
|
|
| 413 |
(op: 'bit 7,(hl)'; leng: 0), |
|
|
| 414 |
(op: 'bit 7,a'; leng: 0), |
|
|
| 415 |
(op: 'res 0,b'; leng: 0), |
|
|
| 416 |
(op: 'res 0,c'; leng: 0), |
|
|
| 417 |
(op: 'res 0,d'; leng: 0), |
|
|
| 418 |
(op: 'res 0,e'; leng: 0), |
|
|
| 419 |
(op: 'res 0,h'; leng: 0), |
|
|
| 420 |
(op: 'res 0,l'; leng: 0), |
|
|
| 421 |
(op: 'res 0,(hl)'; leng: 0), |
|
|
| 422 |
(op: 'res 0,a'; leng: 0), |
|
|
| 423 |
(op: 'res 1,b'; leng: 0), |
|
|
| 424 |
(op: 'res 1,c'; leng: 0), |
|
|
| 425 |
(op: 'res 1,d'; leng: 0), |
|
|
| 426 |
(op: 'res 1,e'; leng: 0), |
|
|
| 427 |
(op: 'res 1,h'; leng: 0), |
|
|
| 428 |
(op: 'res 1,l'; leng: 0), |
|
|
| 429 |
(op: 'res 1,(hl)'; leng: 0), |
|
|
| 430 |
(op: 'res 1,a'; leng: 0), |
|
|
| 431 |
(op: 'res 2,b'; leng: 0), |
|
|
| 432 |
(op: 'res 2,c'; leng: 0), |
|
|
| 433 |
(op: 'res 2,d'; leng: 0), |
|
|
| 434 |
(op: 'res 2,e'; leng: 0), |
|
|
| 435 |
(op: 'res 2,h'; leng: 0), |
|
|
| 436 |
(op: 'res 2,l'; leng: 0), |
|
|
| 437 |
(op: 'res 2,(hl)'; leng: 0), |
|
|
| 438 |
(op: 'res 2,a'; leng: 0), |
|
|
| 439 |
(op: 'res 3,b'; leng: 0), |
|
|
| 440 |
(op: 'res 3,c'; leng: 0), |
|
|
| 441 |
(op: 'res 3,d'; leng: 0), |
|
|
| 442 |
(op: 'res 3,e'; leng: 0), |
|
|
| 443 |
(op: 'res 3,h'; leng: 0), |
|
|
| 444 |
(op: 'res 3,l'; leng: 0), |
|
|
| 445 |
(op: 'res 3,(hl)'; leng: 0), |
|
|
| 446 |
(op: 'res 3,a'; leng: 0), |
|
|
| 447 |
(op: 'res 4,b'; leng: 0), |
|
|
| 448 |
(op: 'res 4,c'; leng: 0), |
|
|
| 449 |
(op: 'res 4,d'; leng: 0), |
|
|
| 450 |
(op: 'res 4,e'; leng: 0), |
|
|
| 451 |
(op: 'res 4,h'; leng: 0), |
|
|
| 452 |
(op: 'res 4,l'; leng: 0), |
|
|
| 453 |
(op: 'res 4,(hl)'; leng: 0), |
|
|
| 454 |
(op: 'res 4,a'; leng: 0), |
|
|
| 455 |
(op: 'res 5,b'; leng: 0), |
|
|
| 456 |
(op: 'res 5,c'; leng: 0), |
|
|
| 457 |
(op: 'res 5,d'; leng: 0), |
|
|
| 458 |
(op: 'res 5,e'; leng: 0), |
|
|
| 459 |
(op: 'res 5,h'; leng: 0), |
|
|
| 460 |
(op: 'res 5,l'; leng: 0), |
|
|
| 461 |
(op: 'res 5,(hl)'; leng: 0), |
|
|
| 462 |
(op: 'res 5,a'; leng: 0), |
|
|
| 463 |
(op: 'res 6,b'; leng: 0), |
|
|
| 464 |
(op: 'res 6,c'; leng: 0), |
|
|
| 465 |
(op: 'res 6,d'; leng: 0), |
|
|
| 466 |
(op: 'res 6,e'; leng: 0), |
|
|
| 467 |
(op: 'res 6,h'; leng: 0), |
|
|
| 468 |
(op: 'res 6,l'; leng: 0), |
|
|
| 469 |
(op: 'res 6,(hl)'; leng: 0), |
|
|
| 470 |
(op: 'res 6,a'; leng: 0), |
|
|
| 471 |
(op: 'res 7,b'; leng: 0), |
|
|
| 472 |
(op: 'res 7,c'; leng: 0), |
|
|
| 473 |
(op: 'res 7,d'; leng: 0), |
|
|
| 474 |
(op: 'res 7,e'; leng: 0), |
|
|
| 475 |
(op: 'res 7,h'; leng: 0), |
|
|
| 476 |
(op: 'res 7,l'; leng: 0), |
|
|
| 477 |
(op: 'res 7,(hl)'; leng: 0), |
|
|
| 478 |
(op: 'res 7,a'; leng: 0), |
|
|
| 479 |
(op: 'set 0,b'; leng: 0), |
|
|
| 480 |
(op: 'set 0,c'; leng: 0), |
|
|
| 481 |
(op: 'set 0,d'; leng: 0), |
|
|
| 482 |
(op: 'set 0,e'; leng: 0), |
|
|
| 483 |
(op: 'set 0,h'; leng: 0), |
|
|
| 484 |
(op: 'set 0,l'; leng: 0), |
|
|
| 485 |
(op: 'set 0,(hl)'; leng: 0), |
|
|
| 486 |
(op: 'set 0,a'; leng: 0), |
|
|
| 487 |
(op: 'set 1,b'; leng: 0), |
|
|
| 488 |
(op: 'set 1,c'; leng: 0), |
|
|
| 489 |
(op: 'set 1,d'; leng: 0), |
|
|
| 490 |
(op: 'set 1,e'; leng: 0), |
|
|
| 491 |
(op: 'set 1,h'; leng: 0), |
|
|
| 492 |
(op: 'set 1,l'; leng: 0), |
|
|
| 493 |
(op: 'set 1,(hl)'; leng: 0), |
|
|
| 494 |
(op: 'set 1,a'; leng: 0), |
|
|
| 495 |
(op: 'set 2,b'; leng: 0), |
|
|
| 496 |
(op: 'set 2,c'; leng: 0), |
|
|
| 497 |
(op: 'set 2,d'; leng: 0), |
|
|
| 498 |
(op: 'set 2,e'; leng: 0), |
|
|
| 499 |
(op: 'set 2,h'; leng: 0), |
|
|
| 500 |
(op: 'set 2,l'; leng: 0), |
|
|
| 501 |
(op: 'set 2,(hl)'; leng: 0), |
|
|
| 502 |
(op: 'set 2,a'; leng: 0), |
|
|
| 503 |
(op: 'set 3,b'; leng: 0), |
|
|
| 504 |
(op: 'set 3,c'; leng: 0), |
|
|
| 505 |
(op: 'set 3,d'; leng: 0), |
|
|
| 506 |
(op: 'set 3,e'; leng: 0), |
|
|
| 507 |
(op: 'set 3,h'; leng: 0), |
|
|
| 508 |
(op: 'set 3,l'; leng: 0), |
|
|
| 509 |
(op: 'set 3,(hl)'; leng: 0), |
|
|
| 510 |
(op: 'set 3,a'; leng: 0), |
|
|
| 511 |
(op: 'set 4,b'; leng: 0), |
|
|
| 512 |
(op: 'set 4,c'; leng: 0), |
|
|
| 513 |
(op: 'set 4,d'; leng: 0), |
|
|
| 514 |
(op: 'set 4,e'; leng: 0), |
|
|
| 515 |
(op: 'set 4,h'; leng: 0), |
|
|
| 516 |
(op: 'set 4,l'; leng: 0), |
|
|
| 517 |
(op: 'set 4,(hl)'; leng: 0), |
|
|
| 518 |
(op: 'set 4,a'; leng: 0), |
|
|
| 519 |
(op: 'set 5,b'; leng: 0), |
|
|
| 520 |
(op: 'set 5,c'; leng: 0), |
|
|
| 521 |
(op: 'set 5,d'; leng: 0), |
|
|
| 522 |
(op: 'set 5,e'; leng: 0), |
|
|
| 523 |
(op: 'set 5,h'; leng: 0), |
|
|
| 524 |
(op: 'set 5,l'; leng: 0), |
|
|
| 525 |
(op: 'set 5,(hl)'; leng: 0), |
|
|
| 526 |
(op: 'set 5,a'; leng: 0), |
|
|
| 527 |
(op: 'set 6,b'; leng: 0), |
|
|
| 528 |
(op: 'set 6,c'; leng: 0), |
|
|
| 529 |
(op: 'set 6,d'; leng: 0), |
|
|
| 530 |
(op: 'set 6,e'; leng: 0), |
|
|
| 531 |
(op: 'set 6,h'; leng: 0), |
|
|
| 532 |
(op: 'set 6,l'; leng: 0), |
|
|
| 533 |
(op: 'set 6,(hl)'; leng: 0), |
|
|
| 534 |
(op: 'set 6,a'; leng: 0), |
|
|
| 535 |
(op: 'set 7,b'; leng: 0), |
|
|
| 536 |
(op: 'set 7,c'; leng: 0), |
|
|
| 537 |
(op: 'set 7,d'; leng: 0), |
|
|
| 538 |
(op: 'set 7,e'; leng: 0), |
|
|
| 539 |
(op: 'set 7,h'; leng: 0), |
|
|
| 540 |
(op: 'set 7,l'; leng: 0), |
|
|
| 541 |
(op: 'set 7,(hl)'; leng: 0), |
|
|
| 542 |
(op: 'set 7,a'; leng: 0)), ( |
|
|
| 543 |
(op: 'undefined'; leng: 0), |
|
|
| 544 |
(op: 'undefined'; leng: 0), |
|
|
| 545 |
(op: 'undefined'; leng: 0), |
|
|
| 546 |
(op: 'undefined'; leng: 0), |
|
|
| 547 |
(op: 'undefined'; leng: 0), |
|
|
| 548 |
(op: 'undefined'; leng: 0), |
|
|
| 549 |
(op: 'undefined'; leng: 0), |
|
|
| 550 |
(op: 'undefined'; leng: 0), |
|
|
| 551 |
(op: 'undefined'; leng: 0), |
|
|
| 552 |
(op: 'addix,bc'; leng: 0), |
|
|
| 553 |
(op: 'undefined'; leng: 0), |
|
|
| 554 |
(op: 'undefined'; leng: 0), |
|
|
| 555 |
(op: 'undefined'; leng: 0), |
|
|
| 556 |
(op: 'undefined'; leng: 0), |
|
|
| 557 |
(op: 'undefined'; leng: 0), |
|
|
| 558 |
(op: 'undefined'; leng: 0), |
|
|
| 559 |
(op: 'undefined'; leng: 0), |
|
|
| 560 |
(op: 'undefined'; leng: 0), |
|
|
| 561 |
(op: 'undefined'; leng: 0), |
|
|
| 562 |
(op: 'undefined'; leng: 0), |
|
|
| 563 |
(op: 'undefined'; leng: 0), |
|
|
| 564 |
(op: 'undefined'; leng: 0), |
|
|
| 565 |
(op: 'undefined'; leng: 0), |
|
|
| 566 |
(op: 'undefined'; leng: 0), |
|
|
| 567 |
(op: 'undefined'; leng: 0), |
|
|
| 568 |
(op: 'add ix,de'; leng: 0), |
|
|
| 569 |
(op: 'undefined'; leng: 0), |
|
|
| 570 |
(op: 'undefined'; leng: 0), |
|
|
| 571 |
(op: 'undefined'; leng: 0), |
|
|
| 572 |
(op: 'undefined'; leng: 0), |
|
|
| 573 |
(op: 'undefined'; leng: 0), |
|
|
| 574 |
(op: 'undefined'; leng: 0), |
|
|
| 575 |
(op: 'undefined'; leng: 0), |
|
|
| 576 |
(op: 'ld ix,####'; leng: 2), |
|
|
| 577 |
(op: 'ld (####),ix'; leng: 2), |
|
|
| 578 |
(op: 'inc ix'; leng: 0), |
|
|
| 579 |
(op: 'inc ixh'; leng: 0), |
|
|
| 580 |
(op: 'dec ixh'; leng: 0), |
|
|
| 581 |
(op: 'ld ixh,##'; leng: 1), |
|
|
| 582 |
(op: 'undefined'; leng: 0), |
|
|
| 583 |
(op: 'undefined'; leng: 0), |
|
|
| 584 |
(op: 'add ix,ix'; leng: 0), |
|
|
| 585 |
(op: 'ld ix,(####)'; leng: 2), |
|
|
| 586 |
(op: 'dec ix'; leng: 0), |
|
|
| 587 |
(op: 'inc ixl'; leng: 0), |
|
|
| 588 |
(op: 'dec ixl'; leng: 0), |
|
|
| 589 |
(op: 'ld ixl,##'; leng: 1), |
|
|
| 590 |
(op: 'undefined'; leng: 0), |
|
|
| 591 |
(op: 'undefined'; leng: 0), |
|
|
| 592 |
(op: 'undefined'; leng: 0), |
|
|
| 593 |
(op: 'undefined'; leng: 0), |
|
|
| 594 |
(op: 'undefined'; leng: 0), |
|
|
| 595 |
(op: 'inc (ix+##)'; leng: 1), |
|
|
| 596 |
(op: 'dec (ix+##)'; leng: 1), |
|
|
| 597 |
(op: 'ld (ix+##),##'; leng: 2), |
|
|
| 598 |
(op: 'undefined'; leng: 0), |
|
|
| 599 |
(op: 'undefined'; leng: 0), |
|
|
| 600 |
(op: 'add ix,sp'; leng: 0), |
|
|
| 601 |
(op: 'undefined'; leng: 0), |
|
|
| 602 |
(op: 'undefined'; leng: 0), |
|
|
| 603 |
(op: 'undefined'; leng: 0), |
|
|
| 604 |
(op: 'undefined'; leng: 0), |
|
|
| 605 |
(op: 'undefined'; leng: 0), |
|
|
| 606 |
(op: 'undefined'; leng: 0), |
|
|
| 607 |
(op: 'undefined'; leng: 0), |
|
|
| 608 |
(op: 'undefined'; leng: 0), |
|
|
| 609 |
(op: 'undefined'; leng: 0), |
|
|
| 610 |
(op: 'undefined'; leng: 0), |
|
|
| 611 |
(op: 'ld b,ixh'; leng: 0), |
|
|
| 612 |
(op: 'ld b,ixl'; leng: 0), |
|
|
| 613 |
(op: 'ld b,(ix+##)'; leng: 1), |
|
|
| 614 |
(op: 'undefined'; leng: 0), |
|
|
| 615 |
(op: 'undefined'; leng: 0), |
|
|
| 616 |
(op: 'undefined'; leng: 0), |
|
|
| 617 |
(op: 'undefined'; leng: 0), |
|
|
| 618 |
(op: 'undefined'; leng: 0), |
|
|
| 619 |
(op: 'ld c,ixh'; leng: 0), |
|
|
| 620 |
(op: 'ld c,ixl'; leng: 0), |
|
|
| 621 |
(op: 'ld c,(ix+##)'; leng: 1), |
|
|
| 622 |
(op: 'undefined'; leng: 0), |
|
|
| 623 |
(op: 'undefined'; leng: 0), |
|
|
| 624 |
(op: 'undefined'; leng: 0), |
|
|
| 625 |
(op: 'undefined'; leng: 0), |
|
|
| 626 |
(op: 'undefined'; leng: 0), |
|
|
| 627 |
(op: 'ld d,ixh'; leng: 0), |
|
|
| 628 |
(op: 'ld d,ixl'; leng: 0), |
|
|
| 629 |
(op: 'ld d,(ix+##)'; leng: 1), |
|
|
| 630 |
(op: 'undefined'; leng: 0), |
|
|
| 631 |
(op: 'undefined'; leng: 0), |
|
|
| 632 |
(op: 'undefined'; leng: 0), |
|
|
| 633 |
(op: 'undefined'; leng: 0), |
|
|
| 634 |
(op: 'undefined'; leng: 0), |
|
|
| 635 |
(op: 'ld e,ixh'; leng: 0), |
|
|
| 636 |
(op: 'ld e,ixl'; leng: 0), |
|
|
| 637 |
(op: 'ld e,(ix+##)'; leng: 1), |
|
|
| 638 |
(op: 'undefined'; leng: 0), |
|
|
| 639 |
(op: 'ld ixh,b'; leng: 0), |
|
|
| 640 |
(op: 'ld ixh,c'; leng: 0), |
|
|
| 641 |
(op: 'ld ixh,d'; leng: 0), |
|
|
| 642 |
(op: 'ld ixh,e'; leng: 0), |
|
|
| 643 |
(op: 'ld ixh,ixh'; leng: 0), |
|
|
| 644 |
(op: 'ld ixh,ixl'; leng: 0), |
|
|
| 645 |
(op: 'ld h,(ix+##)'; leng: 1), |
|
|
| 646 |
(op: 'ld ixh,a'; leng: 0), |
|
|
| 647 |
(op: 'ld ixl,b'; leng: 0), |
|
|
| 648 |
(op: 'ld ixl,c'; leng: 0), |
|
|
| 649 |
(op: 'ld ixl,d'; leng: 0), |
|
|
| 650 |
(op: 'ld ixl,e'; leng: 0), |
|
|
| 651 |
(op: 'ld ixl,ixh'; leng: 0), |
|
|
| 652 |
(op: 'ld ixl,ixh'; leng: 0), |
|
|
| 653 |
(op: 'ld l,(ix+##)'; leng: 1), |
|
|
| 654 |
(op: 'ld ixl,a'; leng: 0), |
|
|
| 655 |
(op: 'ld (ix+##),b'; leng: 1), |
|
|
| 656 |
(op: 'ld (ix+##),c'; leng: 1), |
|
|
| 657 |
(op: 'ld (ix+##),d'; leng: 1), |
|
|
| 658 |
(op: 'ld (ix+##),e'; leng: 1), |
|
|
| 659 |
(op: 'ld (ix+##),h'; leng: 1), |
|
|
| 660 |
(op: 'ld (ix+##),l'; leng: 1), |
|
|
| 661 |
(op: 'undefined'; leng: 0), |
|
|
| 662 |
(op: 'ld (ix+##),a'; leng: 1), |
|
|
| 663 |
(op: 'undefined'; leng: 0), |
|
|
| 664 |
(op: 'undefined'; leng: 0), |
|
|
| 665 |
(op: 'undefined'; leng: 0), |
|
|
| 666 |
(op: 'undefined'; leng: 0), |
|
|
| 667 |
(op: 'ld a,ixh'; leng: 0), |
|
|
| 668 |
(op: 'ld a,ixl'; leng: 0), |
|
|
| 669 |
(op: 'ld a,(ix+##)'; leng: 1), |
|
|
| 670 |
(op: 'undefined'; leng: 0), |
|
|
| 671 |
(op: 'undefined'; leng: 0), |
|
|
| 672 |
(op: 'undefined'; leng: 0), |
|
|
| 673 |
(op: 'undefined'; leng: 0), |
|
|
| 674 |
(op: 'undefined'; leng: 0), |
|
|
| 675 |
(op: 'add a,ixh'; leng: 0), |
|
|
| 676 |
(op: 'add a,ixl'; leng: 0), |
|
|
| 677 |
(op: 'add a,(ix+##)'; leng: 1), |
|
|
| 678 |
(op: 'undefined'; leng: 0), |
|
|
| 679 |
(op: 'undefined'; leng: 0), |
|
|
| 680 |
(op: 'undefined'; leng: 0), |
|
|
| 681 |
(op: 'undefined'; leng: 0), |
|
|
| 682 |
(op: 'undefined'; leng: 0), |
|
|
| 683 |
(op: 'adc a,ixh'; leng: 0), |
|
|
| 684 |
(op: 'adc a,ixl'; leng: 0), |
|
|
| 685 |
(op: 'adc a,(ix+##)'; leng: 1), |
|
|
| 686 |
(op: 'undefined'; leng: 0), |
|
|
| 687 |
(op: 'undefined'; leng: 0), |
|
|
| 688 |
(op: 'undefined'; leng: 0), |
|
|
| 689 |
(op: 'undefined'; leng: 0), |
|
|
| 690 |
(op: 'undefined'; leng: 0), |
|
|
| 691 |
(op: 'sub a,ixh'; leng: 0), |
|
|
| 692 |
(op: 'sub a,ixl'; leng: 0), |
|
|
| 693 |
(op: 'sub (ix+##)'; leng: 1), |
|
|
| 694 |
(op: 'undefined'; leng: 0), |
|
|
| 695 |
(op: 'undefined'; leng: 0), |
|
|
| 696 |
(op: 'undefined'; leng: 0), |
|
|
| 697 |
(op: 'undefined'; leng: 0), |
|
|
| 698 |
(op: 'undefined'; leng: 0), |
|
|
| 699 |
(op: 'sbc a,ixh'; leng: 0), |
|
|
| 700 |
(op: 'sbc a,ixl'; leng: 0), |
|
|
| 701 |
(op: 'sbc a,(ix+##)'; leng: 1), |
|
|
| 702 |
(op: 'undefined'; leng: 0), |
|
|
| 703 |
(op: 'undefined'; leng: 0), |
|
|
| 704 |
(op: 'undefined'; leng: 0), |
|
|
| 705 |
(op: 'undefined'; leng: 0), |
|
|
| 706 |
(op: 'undefined'; leng: 0), |
|
|
| 707 |
(op: 'and a,ixh'; leng: 0), |
|
|
| 708 |
(op: 'and a,ixl'; leng: 0), |
|
|
| 709 |
(op: 'and a,(ix+##)'; leng: 1), |
|
|
| 710 |
(op: 'undefined'; leng: 0), |
|
|
| 711 |
(op: 'undefined'; leng: 0), |
|
|
| 712 |
(op: 'undefined'; leng: 0), |
|
|
| 713 |
(op: 'undefined'; leng: 0), |
|
|
| 714 |
(op: 'undefined'; leng: 0), |
|
|
| 715 |
(op: 'xor a,ixh'; leng: 0), |
|
|
| 716 |
(op: 'xor a,ixl'; leng: 0), |
|
|
| 717 |
(op: 'xor a,(ix+##)'; leng: 1), |
|
|
| 718 |
(op: 'undefined'; leng: 0), |
|
|
| 719 |
(op: 'undefined'; leng: 0), |
|
|
| 720 |
(op: 'undefined'; leng: 0), |
|
|
| 721 |
(op: 'undefined'; leng: 0), |
|
|
| 722 |
(op: 'undefined'; leng: 0), |
|
|
| 723 |
(op: 'or a,ixh'; leng: 0), |
|
|
| 724 |
(op: 'or a,ixl'; leng: 0), |
|
|
| 725 |
(op: 'or a,(ix+##)'; leng: 1), |
|
|
| 726 |
(op: 'undefined'; leng: 0), |
|
|
| 727 |
(op: 'undefined'; leng: 0), |
|
|
| 728 |
(op: 'undefined'; leng: 0), |
|
|
| 729 |
(op: 'undefined'; leng: 0), |
|
|
| 730 |
(op: 'undefined'; leng: 0), |
|
|
| 731 |
(op: 'cp a,ixh'; leng: 0), |
|
|
| 732 |
(op: 'cp a,ixl'; leng: 0), |
|
|
| 733 |
(op: 'cp a,(ix+##)'; leng: 1), |
|
|
| 734 |
(op: 'undefined'; leng: 0), |
|
|
| 735 |
(op: 'undefined'; leng: 0), |
|
|
| 736 |
(op: 'undefined'; leng: 0), |
|
|
| 737 |
(op: 'undefined'; leng: 0), |
|
|
| 738 |
(op: 'undefined'; leng: 0), |
|
|
| 739 |
(op: 'undefined'; leng: 0), |
|
|
| 740 |
(op: 'undefined'; leng: 0), |
|
|
| 741 |
(op: 'undefined'; leng: 0), |
|
|
| 742 |
(op: 'undefined'; leng: 0), |
|
|
| 743 |
(op: 'undefined'; leng: 0), |
|
|
| 744 |
(op: 'undefined'; leng: 0), |
|
|
| 745 |
(op: 'undefined'; leng: 0), |
|
|
| 746 |
(op: ''; leng: 3), |
|
|
| 747 |
(op: 'undefined'; leng: 0), |
|
|
| 748 |
(op: 'undefined'; leng: 0), |
|
|
| 749 |
(op: 'undefined'; leng: 0), |
|
|
| 750 |
(op: 'undefined'; leng: 0), |
|
|
| 751 |
(op: 'undefined'; leng: 0), |
|
|
| 752 |
(op: 'undefined'; leng: 0), |
|
|
| 753 |
(op: 'undefined'; leng: 0), |
|
|
| 754 |
(op: 'undefined'; leng: 0), |
|
|
| 755 |
(op: 'undefined'; leng: 0), |
|
|
| 756 |
(op: 'undefined'; leng: 0), |
|
|
| 757 |
(op: 'undefined'; leng: 0), |
|
|
| 758 |
(op: 'undefined'; leng: 0), |
|
|
| 759 |
(op: 'undefined'; leng: 0), |
|
|
| 760 |
(op: 'undefined'; leng: 0), |
|
|
| 761 |
(op: 'undefined'; leng: 0), |
|
|
| 762 |
(op: 'undefined'; leng: 0), |
|
|
| 763 |
(op: 'undefined'; leng: 0), |
|
|
| 764 |
(op: 'undefined'; leng: 0), |
|
|
| 765 |
(op: 'undefined'; leng: 0), |
|
|
| 766 |
(op: 'undefined'; leng: 0), |
|
|
| 767 |
(op: 'undefined'; leng: 0), |
|
|
| 768 |
(op: 'pop ix'; leng: 0), |
|
|
| 769 |
(op: 'undefined'; leng: 0), |
|
|
| 770 |
(op: 'ex (sp),ix'; leng: 0), |
|
|
| 771 |
(op: 'undefined'; leng: 0), |
|
|
| 772 |
(op: 'push ix'; leng: 0), |
|
|
| 773 |
(op: 'undefined'; leng: 0), |
|
|
| 774 |
(op: 'undefined'; leng: 0), |
|
|
| 775 |
(op: 'undefined'; leng: 0), |
|
|
| 776 |
(op: 'jp (ix)'; leng: 0), |
|
|
| 777 |
(op: 'undefined'; leng: 0), |
|
|
| 778 |
(op: 'undefined'; leng: 0), |
|
|
| 779 |
(op: 'undefined'; leng: 0), |
|
|
| 780 |
(op: 'undefined'; leng: 0), |
|
|
| 781 |
(op: 'undefined'; leng: 0), |
|
|
| 782 |
(op: 'undefined'; leng: 0), |
|
|
| 783 |
(op: 'undefined'; leng: 0), |
|
|
| 784 |
(op: 'undefined'; leng: 0), |
|
|
| 785 |
(op: 'undefined'; leng: 0), |
|
|
| 786 |
(op: 'undefined'; leng: 0), |
|
|
| 787 |
(op: 'undefined'; leng: 0), |
|
|
| 788 |
(op: 'undefined'; leng: 0), |
|
|
| 789 |
(op: 'undefined'; leng: 0), |
|
|
| 790 |
(op: 'undefined'; leng: 0), |
|
|
| 791 |
(op: 'undefined'; leng: 0), |
|
|
| 792 |
(op: 'ld sp,ix'; leng: 0), |
|
|
| 793 |
(op: 'undefined'; leng: 0), |
|
|
| 794 |
(op: 'undefined'; leng: 0), |
|
|
| 795 |
(op: 'undefined'; leng: 0), |
|
|
| 796 |
(op: 'undefined'; leng: 0), |
|
|
| 797 |
(op: 'undefined'; leng: 0), |
|
|
| 798 |
(op: 'undefined'; leng: 0)), |
|
|
| 799 |
( |
|
|
| 800 |
(op: 'undefined'; leng: 0), |
|
|
| 801 |
(op: 'undefined'; leng: 0), |
|
|
| 802 |
(op: 'undefined'; leng: 0), |
|
|
| 803 |
(op: 'undefined'; leng: 0), |
|
|
| 804 |
(op: 'undefined'; leng: 0), |
|
|
| 805 |
(op: 'undefined'; leng: 0), |
|
|
| 806 |
(op: 'undefined'; leng: 0), |
|
|
| 807 |
(op: 'undefined'; leng: 0), |
|
|
| 808 |
(op: 'undefined'; leng: 0), |
|
|
| 809 |
(op: 'undefined'; leng: 0), |
|
|
| 810 |
(op: 'undefined'; leng: 0), |
|
|
| 811 |
(op: 'undefined'; leng: 0), |
|
|
| 812 |
(op: 'undefined'; leng: 0), |
|
|
| 813 |
(op: 'undefined'; leng: 0), |
|
|
| 814 |
(op: 'undefined'; leng: 0), |
|
|
| 815 |
(op: 'undefined'; leng: 0), |
|
|
| 816 |
(op: 'undefined'; leng: 0), |
|
|
| 817 |
(op: 'undefined'; leng: 0), |
|
|
| 818 |
(op: 'undefined'; leng: 0), |
|
|
| 819 |
(op: 'undefined'; leng: 0), |
|
|
| 820 |
(op: 'undefined'; leng: 0), |
|
|
| 821 |
(op: 'undefined'; leng: 0), |
|
|
| 822 |
(op: 'undefined'; leng: 0), |
|
|
| 823 |
(op: 'undefined'; leng: 0), |
|
|
| 824 |
(op: 'undefined'; leng: 0), |
|
|
| 825 |
(op: 'undefined'; leng: 0), |
|
|
| 826 |
(op: 'undefined'; leng: 0), |
|
|
| 827 |
(op: 'undefined'; leng: 0), |
|
|
| 828 |
(op: 'undefined'; leng: 0), |
|
|
| 829 |
(op: 'undefined'; leng: 0), |
|
|
| 830 |
(op: 'undefined'; leng: 0), |
|
|
| 831 |
(op: 'undefined'; leng: 0), |
|
|
| 832 |
(op: 'undefined'; leng: 0), |
|
|
| 833 |
(op: 'undefined'; leng: 0), |
|
|
| 834 |
(op: 'undefined'; leng: 0), |
|
|
| 835 |
(op: 'undefined'; leng: 0), |
|
|
| 836 |
(op: 'undefined'; leng: 0), |
|
|
| 837 |
(op: 'undefined'; leng: 0), |
|
|
| 838 |
(op: 'undefined'; leng: 0), |
|
|
| 839 |
(op: 'undefined'; leng: 0), |
|
|
| 840 |
(op: 'undefined'; leng: 0), |
|
|
| 841 |
(op: 'undefined'; leng: 0), |
|
|
| 842 |
(op: 'undefined'; leng: 0), |
|
|
| 843 |
(op: 'undefined'; leng: 0), |
|
|
| 844 |
(op: 'undefined'; leng: 0), |
|
|
| 845 |
(op: 'undefined'; leng: 0), |
|
|
| 846 |
(op: 'undefined'; leng: 0), |
|
|
| 847 |
(op: 'undefined'; leng: 0), |
|
|
| 848 |
(op: 'undefined'; leng: 0), |
|
|
| 849 |
(op: 'undefined'; leng: 0), |
|
|
| 850 |
(op: 'undefined'; leng: 0), |
|
|
| 851 |
(op: 'undefined'; leng: 0), |
|
|
| 852 |
(op: 'undefined'; leng: 0), |
|
|
| 853 |
(op: 'undefined'; leng: 0), |
|
|
| 854 |
(op: 'undefined'; leng: 0), |
|
|
| 855 |
(op: 'undefined'; leng: 0), |
|
|
| 856 |
(op: 'undefined'; leng: 0), |
|
|
| 857 |
(op: 'undefined'; leng: 0), |
|
|
| 858 |
(op: 'undefined'; leng: 0), |
|
|
| 859 |
(op: 'undefined'; leng: 0), |
|
|
| 860 |
(op: 'undefined'; leng: 0), |
|
|
| 861 |
(op: 'undefined'; leng: 0), |
|
|
| 862 |
(op: 'undefined'; leng: 0), |
|
|
| 863 |
(op: 'undefined'; leng: 0), |
|
|
| 864 |
(op: 'in b,(c)'; leng: 0), |
|
|
| 865 |
(op: 'out (c),b'; leng: 0), |
|
|
| 866 |
(op: 'sbc hl,bc'; leng: 0), |
|
|
| 867 |
(op: 'ld (####),bc'; leng: 2), |
|
|
| 868 |
(op: 'neg'; leng: 0), |
|
|
| 869 |
(op: 'retn'; leng: 0), |
|
|
| 870 |
(op: 'im '; leng: 0), |
|
|
| 871 |
(op: 'ld i,a'; leng: 0), |
|
|
| 872 |
(op: 'in c,(c)'; leng: 0), |
|
|
| 873 |
(op: 'out (c),c'; leng: 0), |
|
|
| 874 |
(op: 'adc hl,bc'; leng: 0), |
|
|
| 875 |
(op: 'ld bc,(####)'; leng: 2), |
|
|
| 876 |
(op: 'neg'; leng: 0), |
|
|
| 877 |
(op: 'reti'; leng: 0), |
|
|
| 878 |
(op: 'im 0'; leng: 0), |
|
|
| 879 |
(op: 'ld r,a'; leng: 0), |
|
|
| 880 |
(op: 'in d,(c)'; leng: 0), |
|
|
| 881 |
(op: 'out (c),d'; leng: 0), |
|
|
| 882 |
(op: 'sbc hl,de'; leng: 0), |
|
|
| 883 |
(op: 'ld (####),de'; leng: 2), |
|
|
| 884 |
(op: 'neg'; leng: 0), |
|
|
| 885 |
(op: 'retn'; leng: 0), |
|
|
| 886 |
(op: 'im 1'; leng: 0), |
|
|
| 887 |
(op: 'ld a,i'; leng: 0), |
|
|
| 888 |
(op: 'in e,(c)'; leng: 0), |
|
|
| 889 |
(op: 'out (c),e'; leng: 0), |
|
|
| 890 |
(op: 'adc hl,de'; leng: 0), |
|
|
| 891 |
(op: 'ld de,(####)'; leng: 2), |
|
|
| 892 |
(op: 'neg'; leng: 0), |
|
|
| 893 |
(op: 'retn'; leng: 0), |
|
|
| 894 |
(op: 'im 2'; leng: 0), |
|
|
| 895 |
(op: 'ld a,r'; leng: 0), |
|
|
| 896 |
(op: 'in h,(c)'; leng: 0), |
|
|
| 897 |
(op: 'out (c),h'; leng: 0), |
|
|
| 898 |
(op: 'sbc hl,hl'; leng: 0), |
|
|
| 899 |
(op: 'ld (####),hl'; leng: 0), |
|
|
| 900 |
(op: 'neg'; leng: 0), |
|
|
| 901 |
(op: 'retn'; leng: 0), |
|
|
| 902 |
(op: 'im 0'; leng: 0), |
|
|
| 903 |
(op: 'rrd'; leng: 0), |
|
|
| 904 |
(op: 'in l,(c)'; leng: 0), |
|
|
| 905 |
(op: 'out (c),l'; leng: 0), |
|
|
| 906 |
(op: 'adc hl,hl'; leng: 0), |
|
|
| 907 |
(op: 'ld hl,(####)'; leng: 0), |
|
|
| 908 |
(op: 'neg'; leng: 0), |
|
|
| 909 |
(op: 'retn'; leng: 0), |
|
|
| 910 |
(op: 'im 0'; leng: 0), |
|
|
| 911 |
(op: 'rld'; leng: 0), |
|
|
| 912 |
(op: 'in f,(c)'; leng: 0), |
|
|
| 913 |
(op: 'out (c),0'; leng: 0), |
|
|
| 914 |
(op: 'sbc hl,sp'; leng: 0), |
|
|
| 915 |
(op: 'ld (####),sp'; leng: 2), |
|
|
| 916 |
(op: 'neg'; leng: 0), |
|
|
| 917 |
(op: 'retn'; leng: 0), |
|
|
| 918 |
(op: 'im 1'; leng: 0), |
|
|
| 919 |
(op: 'nop'; leng: 0), |
|
|
| 920 |
(op: 'in a,(c)'; leng: 0), |
|
|
| 921 |
(op: 'out (c),a'; leng: 0), |
|
|
| 922 |
(op: 'adc hl,sp'; leng: 0), |
|
|
| 923 |
(op: 'ld sp,(####)'; leng: 2), |
|
|
| 924 |
(op: 'neg'; leng: 0), |
|
|
| 925 |
(op: 'retn'; leng: 0), |
|
|
| 926 |
(op: 'im 2'; leng: 0), |
|
|
| 927 |
(op: 'nop'; leng: 0), |
|
|
| 928 |
(op: 'undefined'; leng: 0), |
|
|
| 929 |
(op: 'undefined'; leng: 0), |
|
|
| 930 |
(op: 'undefined'; leng: 0), |
|
|
| 931 |
(op: 'undefined'; leng: 0), |
|
|
| 932 |
(op: 'undefined'; leng: 0), |
|
|
| 933 |
(op: 'undefined'; leng: 0), |
|
|
| 934 |
(op: 'undefined'; leng: 0), |
|
|
| 935 |
(op: 'undefined'; leng: 0), |
|
|
| 936 |
(op: 'undefined'; leng: 0), |
|
|
| 937 |
(op: 'undefined'; leng: 0), |
|
|
| 938 |
(op: 'undefined'; leng: 0), |
|
|
| 939 |
(op: 'undefined'; leng: 0), |
|
|
| 940 |
(op: 'undefined'; leng: 0), |
|
|
| 941 |
(op: 'undefined'; leng: 0), |
|
|
| 942 |
(op: 'undefined'; leng: 0), |
|
|
| 943 |
(op: 'undefined'; leng: 0), |
|
|
| 944 |
(op: 'undefined'; leng: 0), |
|
|
| 945 |
(op: 'undefined'; leng: 0), |
|
|
| 946 |
(op: 'undefined'; leng: 0), |
|
|
| 947 |
(op: 'undefined'; leng: 0), |
|
|
| 948 |
(op: 'undefined'; leng: 0), |
|
|
| 949 |
(op: 'undefined'; leng: 0), |
|
|
| 950 |
(op: 'undefined'; leng: 0), |
|
|
| 951 |
(op: 'undefined'; leng: 0), |
|
|
| 952 |
(op: 'undefined'; leng: 0), |
|
|
| 953 |
(op: 'undefined'; leng: 0), |
|
|
| 954 |
(op: 'undefined'; leng: 0), |
|
|
| 955 |
(op: 'undefined'; leng: 0), |
|
|
| 956 |
(op: 'undefined'; leng: 0), |
|
|
| 957 |
(op: 'undefined'; leng: 0), |
|
|
| 958 |
(op: 'undefined'; leng: 0), |
|
|
| 959 |
(op: 'undefined'; leng: 0), |
|
|
| 960 |
(op: 'ldi'; leng: 0), |
|
|
| 961 |
(op: 'cpi'; leng: 0), |
|
|
| 962 |
(op: 'ini'; leng: 0), |
|
|
| 963 |
(op: 'outi'; leng: 0), |
|
|
| 964 |
(op: 'undefined'; leng: 0), |
|
|
| 965 |
(op: 'undefined'; leng: 0), |
|
|
| 966 |
(op: 'undefined'; leng: 0), |
|
|
| 967 |
(op: 'undefined'; leng: 0), |
|
|
| 968 |
(op: 'ldd'; leng: 0), |
|
|
| 969 |
(op: 'cpd'; leng: 0), |
|
|
| 970 |
(op: 'ind'; leng: 0), |
|
|
| 971 |
(op: 'outd'; leng: 0), |
|
|
| 972 |
(op: 'undefined'; leng: 0), |
|
|
| 973 |
(op: 'undefined'; leng: 0), |
|
|
| 974 |
(op: 'undefined'; leng: 0), |
|
|
| 975 |
(op: 'undefined'; leng: 0), |
|
|
| 976 |
(op: 'ldir'; leng: 0), |
|
|
| 977 |
(op: 'cpir'; leng: 0), |
|
|
| 978 |
(op: 'inir'; leng: 0), |
|
|
| 979 |
(op: 'otir'; leng: 0), |
|
|
| 980 |
(op: 'undefined'; leng: 0), |
|
|
| 981 |
(op: 'undefined'; leng: 0), |
|
|
| 982 |
(op: 'undefined'; leng: 0), |
|
|
| 983 |
(op: 'undefined'; leng: 0), |
|
|
| 984 |
(op: 'lddr'; leng: 0), |
|
|
| 985 |
(op: 'cpdr'; leng: 0), |
|
|
| 986 |
(op: 'indr'; leng: 0), |
|
|
| 987 |
(op: 'otdr'; leng: 0), |
|
|
| 988 |
(op: 'undefined'; leng: 0), |
|
|
| 989 |
(op: 'undefined'; leng: 0), |
|
|
| 990 |
(op: 'undefined'; leng: 0), |
|
|
| 991 |
(op: 'undefined'; leng: 0), |
|
|
| 992 |
(op: 'undefined'; leng: 0), |
|
|
| 993 |
(op: 'undefined'; leng: 0), |
|
|
| 994 |
(op: 'undefined'; leng: 0), |
|
|
| 995 |
(op: 'undefined'; leng: 0), |
|
|
| 996 |
(op: 'undefined'; leng: 0), |
|
|
| 997 |
(op: 'undefined'; leng: 0), |
|
|
| 998 |
(op: 'undefined'; leng: 0), |
|
|
| 999 |
(op: 'undefined'; leng: 0), |
|
|
| 1000 |
(op: 'undefined'; leng: 0), |
|
|
| 1001 |
(op: 'undefined'; leng: 0), |
|
|
| 1002 |
(op: 'undefined'; leng: 0), |
|
|
| 1003 |
(op: 'undefined'; leng: 0), |
|
|
| 1004 |
(op: 'undefined'; leng: 0), |
|
|
| 1005 |
(op: 'undefined'; leng: 0), |
|
|
| 1006 |
(op: 'undefined'; leng: 0), |
|
|
| 1007 |
(op: 'undefined'; leng: 0), |
|
|
| 1008 |
(op: 'undefined'; leng: 0), |
|
|
| 1009 |
(op: 'undefined'; leng: 0), |
|
|
| 1010 |
(op: 'undefined'; leng: 0), |
|
|
| 1011 |
(op: 'undefined'; leng: 0), |
|
|
| 1012 |
(op: 'undefined'; leng: 0), |
|
|
| 1013 |
(op: 'undefined'; leng: 0), |
|
|
| 1014 |
(op: 'undefined'; leng: 0), |
|
|
| 1015 |
(op: 'undefined'; leng: 0), |
|
|
| 1016 |
(op: 'undefined'; leng: 0), |
|
|
| 1017 |
(op: 'undefined'; leng: 0), |
|
|
| 1018 |
(op: 'undefined'; leng: 0), |
|
|
| 1019 |
(op: 'undefined'; leng: 0), |
|
|
| 1020 |
(op: 'undefined'; leng: 0), |
|
|
| 1021 |
(op: 'undefined'; leng: 0), |
|
|
| 1022 |
(op: 'undefined'; leng: 0), |
|
|
| 1023 |
(op: 'undefined'; leng: 0), |
|
|
| 1024 |
(op: 'undefined'; leng: 0), |
|
|
| 1025 |
(op: 'undefined'; leng: 0), |
|
|
| 1026 |
(op: 'undefined'; leng: 0), |
|
|
| 1027 |
(op: 'undefined'; leng: 0), |
|
|
| 1028 |
(op: 'undefined'; leng: 0), |
|
|
| 1029 |
(op: 'undefined'; leng: 0), |
|
|
| 1030 |
(op: 'undefined'; leng: 0), |
|
|
| 1031 |
(op: 'undefined'; leng: 0), |
|
|
| 1032 |
(op: 'undefined'; leng: 0), |
|
|
| 1033 |
(op: 'undefined'; leng: 0), |
|
|
| 1034 |
(op: 'undefined'; leng: 0), |
|
|
| 1035 |
(op: 'undefined'; leng: 0), |
|
|
| 1036 |
(op: 'undefined'; leng: 0), |
|
|
| 1037 |
(op: 'undefined'; leng: 0), |
|
|
| 1038 |
(op: 'undefined'; leng: 0), |
|
|
| 1039 |
(op: 'undefined'; leng: 0), |
|
|
| 1040 |
(op: 'undefined'; leng: 0), |
|
|
| 1041 |
(op: 'undefined'; leng: 0), |
|
|
| 1042 |
(op: 'undefined'; leng: 0), |
|
|
| 1043 |
(op: 'undefined'; leng: 0), |
|
|
| 1044 |
(op: 'undefined'; leng: 0), |
|
|
| 1045 |
(op: 'undefined'; leng: 0), |
|
|
| 1046 |
(op: 'undefined'; leng: 0), |
|
|
| 1047 |
(op: 'undefined'; leng: 0), |
|
|
| 1048 |
(op: 'undefined'; leng: 0), |
|
|
| 1049 |
(op: 'undefined'; leng: 0), |
|
|
| 1050 |
(op: 'undefined'; leng: 0), |
|
|
| 1051 |
(op: 'undefined'; leng: 0), |
|
|
| 1052 |
(op: 'undefined'; leng: 0), |
|
|
| 1053 |
(op: 'undefined'; leng: 0), |
|
|
| 1054 |
(op: 'undefined'; leng: 0), |
|
|
| 1055 |
(op: 'undefined'; leng: 0)), |
|
|
| 1056 |
( |
|
|
| 1057 |
(op: 'rlc (ix+##),b'; leng: -2), |
|
|
| 1058 |
(op: 'rlc (ix+##),c'; leng: -2), |
|
|
| 1059 |
(op: 'rlc (ix+##),d'; leng: -2), |
|
|
| 1060 |
(op: 'rlc (ix+##),e'; leng: -2), |
|
|
| 1061 |
(op: 'rlc (ix+##),h'; leng: -2), |
|
|
| 1062 |
(op: 'rlc (ix+##),l'; leng: -2), |
|
|
| 1063 |
(op: 'rlc (ix+##)'; leng: -2), |
|
|
| 1064 |
(op: 'rlc (ix+##),a'; leng: -2), |
|
|
| 1065 |
(op: 'rrc (ix+##),b'; leng: -2), |
|
|
| 1066 |
(op: 'rrc (ix+##),c'; leng: -2), |
|
|
| 1067 |
(op: 'rrc (ix+##),d'; leng: -2), |
|
|
| 1068 |
(op: 'rrc (ix+##),e'; leng: -2), |
|
|
| 1069 |
(op: 'rrc (ix+##),h'; leng: -2), |
|
|
| 1070 |
(op: 'rrc (ix+##),l'; leng: -2), |
|
|
| 1071 |
(op: 'rrc (ix+##)'; leng: -2), |
|
|
| 1072 |
(op: 'rrc (ix+##),a'; leng: -2), |
|
|
| 1073 |
(op: 'rl (ix+##),b'; leng: -2), |
|
|
| 1074 |
(op: 'rl (ix+##),c'; leng: -2), |
|
|
| 1075 |
(op: 'rl (ix+##),d'; leng: -2), |
|
|
| 1076 |
(op: 'rl (ix+##),e'; leng: -2), |
|
|
| 1077 |
(op: 'rl (ix+##),h'; leng: -2), |
|
|
| 1078 |
(op: 'rl (ix+##),l'; leng: -2), |
|
|
| 1079 |
(op: 'rl (ix+##)'; leng: -2), |
|
|
| 1080 |
(op: 'rl (ix+##),a'; leng: -2), |
|
|
| 1081 |
(op: 'rr (ix+##),b'; leng: -2), |
|
|
| 1082 |
(op: 'rr (ix+##),c'; leng: -2), |
|
|
| 1083 |
(op: 'rr (ix+##),d'; leng: -2), |
|
|
| 1084 |
(op: 'rr (ix+##),e'; leng: -2), |
|
|
| 1085 |
(op: 'rr (ix+##),h'; leng: -2), |
|
|
| 1086 |
(op: 'rr (ix+##),l'; leng: -2), |
|
|
| 1087 |
(op: 'rr (ix+##)'; leng: -2), |
|
|
| 1088 |
(op: 'rr (ix+##),a'; leng: -2), |
|
|
| 1089 |
(op: 'sla (ix+##),b'; leng: -2), |
|
|
| 1090 |
(op: 'sla (ix+##),c'; leng: -2), |
|
|
| 1091 |
(op: 'sla (ix+##),d'; leng: -2), |
|
|
| 1092 |
(op: 'sla (ix+##),e'; leng: -2), |
|
|
| 1093 |
(op: 'sla (ix+##),h'; leng: -2), |
|
|
| 1094 |
(op: 'sla (ix+##),l'; leng: -2), |
|
|
| 1095 |
(op: 'sla (ix+##)'; leng: -2), |
|
|
| 1096 |
(op: 'sla (ix+##),a'; leng: -2), |
|
|
| 1097 |
(op: 'sra (ix+##),b'; leng: -2), |
|
|
| 1098 |
(op: 'sra (ix+##),c'; leng: -2), |
|
|
| 1099 |
(op: 'sra (ix+##),d'; leng: -2), |
|
|
| 1100 |
(op: 'sra (ix+##),e'; leng: -2), |
|
|
| 1101 |
(op: 'sra (ix+##),h'; leng: -2), |
|
|
| 1102 |
(op: 'sra (ix+##),l'; leng: -2), |
|
|
| 1103 |
(op: 'sra (ix+##)'; leng: -2), |
|
|
| 1104 |
(op: 'sra (ix+##),a'; leng: -2), |
|
|
| 1105 |
(op: 'slai (ix+##),b'; leng: -2), |
|
|
| 1106 |
(op: 'slai (ix+##),c'; leng: -2), |
|
|
| 1107 |
(op: 'slai (ix+##),d'; leng: -2), |
|
|
| 1108 |
(op: 'slai (ix+##),e'; leng: -2), |
|
|
| 1109 |
(op: 'slai (ix+##),h'; leng: -2), |
|
|
| 1110 |
(op: 'slai (ix+##),l'; leng: -2), |
|
|
| 1111 |
(op: 'slai (ix+##)'; leng: -2), |
|
|
| 1112 |
(op: 'slai (ix+##),a'; leng: -2), |
|
|
| 1113 |
(op: 'srl (ix+##),b'; leng: -2), |
|
|
| 1114 |
(op: 'srl (ix+##),c'; leng: -2), |
|
|
| 1115 |
(op: 'srl (ix+##),d'; leng: -2), |
|
|
| 1116 |
(op: 'srl (ix+##),e'; leng: -2), |
|
|
| 1117 |
(op: 'srl (ix+##),h'; leng: -2), |
|
|
| 1118 |
(op: 'srl (ix+##),l'; leng: -2), |
|
|
| 1119 |
(op: 'srl (ix+##)'; leng: -2), |
|
|
| 1120 |
(op: 'srl (ix+##),a'; leng: -2), |
|
|
| 1121 |
(op: 'bit 0,(ix+##)'; leng: -2), |
|
|
| 1122 |
(op: 'bit 0,(ix+##)'; leng: -2), |
|
|
| 1123 |
(op: 'bit 0,(ix+##)'; leng: -2), |
|
|
| 1124 |
(op: 'bit 0,(ix+##)'; leng: -2), |
|
|
| 1125 |
(op: 'bit 0,(ix+##)'; leng: -2), |
|
|
| 1126 |
(op: 'bit 0,(ix+##)'; leng: -2), |
|
|
| 1127 |
(op: 'bit 0,(ix+##)'; leng: -2), |
|
|
| 1128 |
(op: 'bit 0,(ix+##)'; leng: -2), |
|
|
| 1129 |
(op: 'bit 1,(ix+##)'; leng: -2), |
|
|
| 1130 |
(op: 'bit 1,(ix+##)'; leng: -2), |
|
|
| 1131 |
(op: 'bit 1,(ix+##)'; leng: -2), |
|
|
| 1132 |
(op: 'bit 1,(ix+##)'; leng: -2), |
|
|
| 1133 |
(op: 'bit 1,(ix+##)'; leng: -2), |
|
|
| 1134 |
(op: 'bit 1,(ix+##)'; leng: -2), |
|
|
| 1135 |
(op: 'bit 1,(ix+##)'; leng: -2), |
|
|
| 1136 |
(op: 'bit 1,(ix+##)'; leng: -2), |
|
|
| 1137 |
(op: 'bit 2,(ix+##)'; leng: -2), |
|
|
| 1138 |
(op: 'bit 2,(ix+##)'; leng: -2), |
|
|
| 1139 |
(op: 'bit 2,(ix+##)'; leng: -2), |
|
|
| 1140 |
(op: 'bit 2,(ix+##)'; leng: -2), |
|
|
| 1141 |
(op: 'bit 2,(ix+##)'; leng: -2), |
|
|
| 1142 |
(op: 'bit 2,(ix+##)'; leng: -2), |
|
|
| 1143 |
(op: 'bit 2,(ix+##)'; leng: -2), |
|
|
| 1144 |
(op: 'bit 2,(ix+##)'; leng: -2), |
|
|
| 1145 |
(op: 'bit 3,(ix+##)'; leng: -2), |
|
|
| 1146 |
(op: 'bit 3,(ix+##)'; leng: -2), |
|
|
| 1147 |
(op: 'bit 3,(ix+##)'; leng: -2), |
|
|
| 1148 |
(op: 'bit 3,(ix+##)'; leng: -2), |
|
|
| 1149 |
(op: 'bit 3,(ix+##)'; leng: -2), |
|
|
| 1150 |
(op: 'bit 3,(ix+##)'; leng: -2), |
|
|
| 1151 |
(op: 'bit 3,(ix+##)'; leng: -2), |
|
|
| 1152 |
(op: 'bit 3,(ix+##)'; leng: -2), |
|
|
| 1153 |
(op: 'bit 4,(ix+##)'; leng: -2), |
|
|
| 1154 |
(op: 'bit 4,(ix+##)'; leng: -2), |
|
|
| 1155 |
(op: 'bit 4,(ix+##)'; leng: -2), |
|
|
| 1156 |
(op: 'bit 4,(ix+##)'; leng: -2), |
|
|
| 1157 |
(op: 'bit 4,(ix+##)'; leng: -2), |
|
|
| 1158 |
(op: 'bit 4,(ix+##)'; leng: -2), |
|
|
| 1159 |
(op: 'bit 4,(ix+##)'; leng: -2), |
|
|
| 1160 |
(op: 'bit 4,(ix+##)'; leng: -2), |
|
|
| 1161 |
(op: 'bit 5,(ix+##)'; leng: -2), |
|
|
| 1162 |
(op: 'bit 5,(ix+##)'; leng: -2), |
|
|
| 1163 |
(op: 'bit 5,(ix+##)'; leng: -2), |
|
|
| 1164 |
(op: 'bit 5,(ix+##)'; leng: -2), |
|
|
| 1165 |
(op: 'bit 5,(ix+##)'; leng: -2), |
|
|
| 1166 |
(op: 'bit 5,(ix+##)'; leng: -2), |
|
|
| 1167 |
(op: 'bit 5,(ix+##)'; leng: -2), |
|
|
| 1168 |
(op: 'bit 5,(ix+##)'; leng: -2), |
|
|
| 1169 |
(op: 'bit 6,(ix+##)'; leng: -2), |
|
|
| 1170 |
(op: 'bit 6,(ix+##)'; leng: -2), |
|
|
| 1171 |
(op: 'bit 6,(ix+##)'; leng: -2), |
|
|
| 1172 |
(op: 'bit 6,(ix+##)'; leng: -2), |
|
|
| 1173 |
(op: 'bit 6,(ix+##)'; leng: -2), |
|
|
| 1174 |
(op: 'bit 6,(ix+##)'; leng: -2), |
|
|
| 1175 |
(op: 'bit 6,(ix+##)'; leng: -2), |
|
|
| 1176 |
(op: 'bit 6,(ix+##)'; leng: -2), |
|
|
| 1177 |
(op: 'bit 7,(ix+##)'; leng: -2), |
|
|
| 1178 |
(op: 'bit 7,(ix+##)'; leng: -2), |
|
|
| 1179 |
(op: 'bit 7,(ix+##)'; leng: -2), |
|
|
| 1180 |
(op: 'bit 7,(ix+##)'; leng: -2), |
|
|
| 1181 |
(op: 'bit 7,(ix+##)'; leng: -2), |
|
|
| 1182 |
(op: 'bit 7,(ix+##)'; leng: -2), |
|
|
| 1183 |
(op: 'bit 7,(ix+##)'; leng: -2), |
|
|
| 1184 |
(op: 'bit 7,(ix+##)'; leng: -2), |
|
|
| 1185 |
(op: 'res 0,(ix+##),b'; leng: -2), |
|
|
| 1186 |
(op: 'res 0,(ix+##),c'; leng: -2), |
|
|
| 1187 |
(op: 'res 0,(ix+##),d'; leng: -2), |
|
|
| 1188 |
(op: 'res 0,(ix+##),e'; leng: -2), |
|
|
| 1189 |
(op: 'res 0,(ix+##),h'; leng: -2), |
|
|
| 1190 |
(op: 'res 0,(ix+##),l'; leng: -2), |
|
|
| 1191 |
(op: 'res 0,(ix+##)'; leng: -2), |
|
|
| 1192 |
(op: 'res 0,(ix+##),a'; leng: -2), |
|
|
| 1193 |
(op: 'res 1,(ix+##),b'; leng: -2), |
|
|
| 1194 |
(op: 'res 1,(ix+##),c'; leng: -2), |
|
|
| 1195 |
(op: 'res 1,(ix+##),d'; leng: -2), |
|
|
| 1196 |
(op: 'res 1,(ix+##),e'; leng: -2), |
|
|
| 1197 |
(op: 'res 1,(ix+##),h'; leng: -2), |
|
|
| 1198 |
(op: 'res 1,(ix+##),l'; leng: -2), |
|
|
| 1199 |
(op: 'res 1,(ix+##)'; leng: -2), |
|
|
| 1200 |
(op: 'res 1,(ix+##),a'; leng: -2), |
|
|
| 1201 |
(op: 'res 2,(ix+##),b'; leng: -2), |
|
|
| 1202 |
(op: 'res 2,(ix+##),c'; leng: -2), |
|
|
| 1203 |
(op: 'res 2,(ix+##),d'; leng: -2), |
|
|
| 1204 |
(op: 'res 2,(ix+##),e'; leng: -2), |
|
|
| 1205 |
(op: 'res 2,(ix+##),h'; leng: -2), |
|
|
| 1206 |
(op: 'res 2,(ix+##),l'; leng: -2), |
|
|
| 1207 |
(op: 'res 2,(ix+##)'; leng: -2), |
|
|
| 1208 |
(op: 'res 2,(ix+##),a'; leng: -2), |
|
|
| 1209 |
(op: 'res 3,(ix+##),b'; leng: -2), |
|
|
| 1210 |
(op: 'res 3,(ix+##),c'; leng: -2), |
|
|
| 1211 |
(op: 'res 3,(ix+##),d'; leng: -2), |
|
|
| 1212 |
(op: 'res 3,(ix+##),e'; leng: -2), |
|
|
| 1213 |
(op: 'res 3,(ix+##),h'; leng: -2), |
|
|
| 1214 |
(op: 'res 3,(ix+##),l'; leng: -2), |
|
|
| 1215 |
(op: 'res 3,(ix+##)'; leng: -2), |
|
|
| 1216 |
(op: 'res 3,(ix+##),a'; leng: -2), |
|
|
| 1217 |
(op: 'res 4,(ix+##),b'; leng: -2), |
|
|
| 1218 |
(op: 'res 4,(ix+##),c'; leng: -2), |
|
|
| 1219 |
(op: 'res 4,(ix+##),d'; leng: -2), |
|
|
| 1220 |
(op: 'res 4,(ix+##),e'; leng: -2), |
|
|
| 1221 |
(op: 'res 4,(ix+##),h'; leng: -2), |
|
|
| 1222 |
(op: 'res 4,(ix+##),l'; leng: -2), |
|
|
| 1223 |
(op: 'res 4,(ix+##)'; leng: -2), |
|
|
| 1224 |
(op: 'res 4,(ix+##),a'; leng: -2), |
|
|
| 1225 |
(op: 'res 5,(ix+##),b'; leng: -2), |
|
|
| 1226 |
(op: 'res 5,(ix+##),c'; leng: -2), |
|
|
| 1227 |
(op: 'res 5,(ix+##),d'; leng: -2), |
|
|
| 1228 |
(op: 'res 5,(ix+##),e'; leng: -2), |
|
|
| 1229 |
(op: 'res 5,(ix+##),h'; leng: -2), |
|
|
| 1230 |
(op: 'res 5,(ix+##),l'; leng: -2), |
|
|
| 1231 |
(op: 'res 5,(ix+##)'; leng: -2), |
|
|
| 1232 |
(op: 'res 5,(ix+##),a'; leng: -2), |
|
|
| 1233 |
(op: 'res 6,(ix+##),b'; leng: -2), |
|
|
| 1234 |
(op: 'res 6,(ix+##),c'; leng: -2), |
|
|
| 1235 |
(op: 'res 6,(ix+##),d'; leng: -2), |
|
|
| 1236 |
(op: 'res 6,(ix+##),e'; leng: -2), |
|
|
| 1237 |
(op: 'res 6,(ix+##),h'; leng: -2), |
|
|
| 1238 |
(op: 'res 6,(ix+##),l'; leng: -2), |
|
|
| 1239 |
(op: 'res 6,(ix+##)'; leng: -2), |
|
|
| 1240 |
(op: 'res 6,(ix+##),a'; leng: -2), |
|
|
| 1241 |
(op: 'res 7,(ix+##),b'; leng: -2), |
|
|
| 1242 |
(op: 'res 7,(ix+##),c'; leng: -2), |
|
|
| 1243 |
(op: 'res 7,(ix+##),d'; leng: -2), |
|
|
| 1244 |
(op: 'res 7,(ix+##),e'; leng: -2), |
|
|
| 1245 |
(op: 'res 7,(ix+##),h'; leng: -2), |
|
|
| 1246 |
(op: 'res 7,(ix+##),l'; leng: -2), |
|
|
| 1247 |
(op: 'res 7,(ix+##)'; leng: -2), |
|
|
| 1248 |
(op: 'res 7,(ix+##),a'; leng: -2), |
|
|
| 1249 |
(op: 'set 0,(ix+##),b'; leng: -2), |
|
|
| 1250 |
(op: 'set 0,(ix+##),c'; leng: -2), |
|
|
| 1251 |
(op: 'set 0,(ix+##),d'; leng: -2), |
|
|
| 1252 |
(op: 'set 0,(ix+##),e'; leng: -2), |
|
|
| 1253 |
(op: 'set 0,(ix+##),h'; leng: -2), |
|
|
| 1254 |
(op: 'set 0,(ix+##),l'; leng: -2), |
|
|
| 1255 |
(op: 'set 0,(ix+##)'; leng: -2), |
|
|
| 1256 |
(op: 'set 0,(ix+##),a'; leng: -2), |
|
|
| 1257 |
(op: 'set 1,(ix+##),b'; leng: -2), |
|
|
| 1258 |
(op: 'set 1,(ix+##),c'; leng: -2), |
|
|
| 1259 |
(op: 'set 1,(ix+##),d'; leng: -2), |
|
|
| 1260 |
(op: 'set 1,(ix+##),e'; leng: -2), |
|
|
| 1261 |
(op: 'set 1,(ix+##),h'; leng: -2), |
|
|
| 1262 |
(op: 'set 1,(ix+##),l'; leng: -2), |
|
|
| 1263 |
(op: 'set 1,(ix+##)'; leng: -2), |
|
|
| 1264 |
(op: 'set 1,(ix+##),a'; leng: -2), |
|
|
| 1265 |
(op: 'set 2,(ix+##),b'; leng: -2), |
|
|
| 1266 |
(op: 'set 2,(ix+##),c'; leng: -2), |
|
|
| 1267 |
(op: 'set 2,(ix+##),d'; leng: -2), |
|
|
| 1268 |
(op: 'set 2,(ix+##),e'; leng: -2), |
|
|
| 1269 |
(op: 'set 2,(ix+##),h'; leng: -2), |
|
|
| 1270 |
(op: 'set 2,(ix+##),l'; leng: -2), |
|
|
| 1271 |
(op: 'set 2,(ix+##)'; leng: -2), |
|
|
| 1272 |
(op: 'set 2,(ix+##),a'; leng: -2), |
|
|
| 1273 |
(op: 'set 3,(ix+##),b'; leng: -2), |
|
|
| 1274 |
(op: 'set 3,(ix+##),c'; leng: -2), |
|
|
| 1275 |
(op: 'set 3,(ix+##),d'; leng: -2), |
|
|
| 1276 |
(op: 'set 3,(ix+##),e'; leng: -2), |
|
|
| 1277 |
(op: 'set 3,(ix+##),h'; leng: -2), |
|
|
| 1278 |
(op: 'set 3,(ix+##),l'; leng: -2), |
|
|
| 1279 |
(op: 'set 3,(ix+##)'; leng: -2), |
|
|
| 1280 |
(op: 'set 3,(ix+##),a'; leng: -2), |
|
|
| 1281 |
(op: 'set 4,(ix+##),b'; leng: -2), |
|
|
| 1282 |
(op: 'set 4,(ix+##),c'; leng: -2), |
|
|
| 1283 |
(op: 'set 4,(ix+##),d'; leng: -2), |
|
|
| 1284 |
(op: 'set 4,(ix+##),e'; leng: -2), |
|
|
| 1285 |
(op: 'set 4,(ix+##),h'; leng: -2), |
|
|
| 1286 |
(op: 'set 4,(ix+##),l'; leng: -2), |
|
|
| 1287 |
(op: 'set 4,(ix+##)'; leng: -2), |
|
|
| 1288 |
(op: 'set 4,(ix+##),a'; leng: -2), |
|
|
| 1289 |
(op: 'set 5,(ix+##),b'; leng: -2), |
|
|
| 1290 |
(op: 'set 5,(ix+##),c'; leng: -2), |
|
|
| 1291 |
(op: 'set 5,(ix+##),d'; leng: -2), |
|
|
| 1292 |
(op: 'set 5,(ix+##),e'; leng: -2), |
|
|
| 1293 |
(op: 'set 5,(ix+##),h'; leng: -2), |
|
|
| 1294 |
(op: 'set 5,(ix+##),l'; leng: -2), |
|
|
| 1295 |
(op: 'set 5,(ix+##)'; leng: -2), |
|
|
| 1296 |
(op: 'set 5,(ix+##),a'; leng: -2), |
|
|
| 1297 |
(op: 'set 6,(ix+##),b'; leng: -2), |
|
|
| 1298 |
(op: 'set 6,(ix+##),c'; leng: -2), |
|
|
| 1299 |
(op: 'set 6,(ix+##),d'; leng: -2), |
|
|
| 1300 |
(op: 'set 6,(ix+##),e'; leng: -2), |
|
|
| 1301 |
(op: 'set 6,(ix+##),h'; leng: -2), |
|
|
| 1302 |
(op: 'set 6,(ix+##),l'; leng: -2), |
|
|
| 1303 |
(op: 'set 6,(ix+##)'; leng: -2), |
|
|
| 1304 |
(op: 'set 6,(ix+##),a'; leng: -2), |
|
|
| 1305 |
(op: 'set 7,(ix+##),b'; leng: -2), |
|
|
| 1306 |
(op: 'set 7,(ix+##),c'; leng: -2), |
|
|
| 1307 |
(op: 'set 7,(ix+##),d'; leng: -2), |
|
|
| 1308 |
(op: 'set 7,(ix+##),e'; leng: -2), |
|
|
| 1309 |
(op: 'set 7,(ix+##),h'; leng: -2), |
|
|
| 1310 |
(op: 'set 7,(ix+##),l'; leng: -2), |
|
|
| 1311 |
(op: 'set 7,(ix+##)'; leng: -2), |
|
|
| 1312 |
(op: 'set 7,(ix+##),a'; leng: -2))); |
|
|
| 1313 |
|
|
|
| 1314 |
function place(s: Format; Value: string): string; |
|
|
| 1315 |
function Disassemble(var str: string; pc: word): word; |
|
|
| 1316 |
function byte2hex(W: byte): string; |
|
|
| 1317 |
function word2hex(W: word): string; |
|
|
| 1318 |
|
|
|
| 1319 |
implementation |
|
|
| 1320 |
|
|
|
| 1321 |
uses machine; |
|
|
| 1322 |
|
|
|
| 1323 |
function place(s: Format; Value: string): string; |
|
|
| 1324 |
var |
|
|
| 1325 |
i, j: byte; |
|
|
| 1326 |
begin |
|
|
| 1327 |
j := 1; |
|
|
| 1328 |
for i := 1 to length(s.op) do |
|
|
| 1329 |
if (s.op[i] = '#') and (j <= length(Value)) then |
|
|
| 1330 |
begin |
|
|
| 1331 |
s.op[i] := Value[j]; |
|
|
| 1332 |
Inc(j); |
|
|
| 1333 |
end; |
|
|
| 1334 |
place := s.op; |
|
|
| 1335 |
end; |
|
|
| 1336 |
|
|
|
| 1337 |
const |
|
|
| 1338 |
h: string = ('0123456789ABCDEF'); |
|
|
| 1339 |
|
|
|
| 1340 |
function byte2hex(W: byte): string; |
|
|
| 1341 |
begin |
|
|
| 1342 |
Result := h[W div 16 + 1] + h[W mod 16 + 1]; |
|
|
| 1343 |
end; |
|
|
| 1344 |
|
|
|
| 1345 |
function word2hex(W: word): string; |
|
|
| 1346 |
begin |
|
|
| 1347 |
Result := byte2hex(Hi(W)) + byte2hex(Lo(W)); |
|
|
| 1348 |
end; |
|
|
| 1349 |
|
|
|
| 1350 |
function Disassemble(var str: string; pc: word): word; |
|
|
| 1351 |
var |
|
|
| 1352 |
firstByte, i, j: integer; |
|
|
| 1353 |
code: format; |
|
|
| 1354 |
begin |
|
|
| 1355 |
firstByte := speekb(pc); |
|
|
| 1356 |
i := firstbyte; |
|
|
| 1357 |
Inc(pc); |
|
|
| 1358 |
if major[i].op = '' then |
|
|
| 1359 |
begin |
|
|
| 1360 |
j := major[i].leng; |
|
|
| 1361 |
i := speekb(pc); |
|
|
| 1362 |
Inc(pc); |
|
|
| 1363 |
if minor[j][i].op = '' then |
|
|
| 1364 |
begin |
|
|
| 1365 |
j := minor[j][i].leng; |
|
|
| 1366 |
i := speekb(pc + 1); |
|
|
| 1367 |
end; |
|
|
| 1368 |
|
|
|
| 1369 |
code := minor[j][i]; |
|
|
| 1370 |
end |
|
|
| 1371 |
else |
|
|
| 1372 |
code := major[i]; |
|
|
| 1373 |
|
|
|
| 1374 |
case (code.leng) of |
|
|
| 1375 |
2: |
|
|
| 1376 |
begin |
|
|
| 1377 |
str := place(code, word2hex(wordpeek(pc))); |
|
|
| 1378 |
Inc(pc, 2); |
|
|
| 1379 |
end; |
|
|
| 1380 |
1: |
|
|
| 1381 |
begin |
|
|
| 1382 |
str := place(code, byte2hex(speekb(pc))); |
|
|
| 1383 |
Inc(pc); |
|
|
| 1384 |
end; |
|
|
| 1385 |
0: str := code.op; |
|
|
| 1386 |
-1: |
|
|
| 1387 |
begin |
|
|
| 1388 |
str := place(code, word2hex((pc + 1 + shortint(speekb(pc)) and $ffff))); |
|
|
| 1389 |
Inc(pc); |
|
|
| 1390 |
end; |
|
|
| 1391 |
-2: |
|
|
| 1392 |
begin |
|
|
| 1393 |
str := place(code, byte2hex(speekb(pc))); |
|
|
| 1394 |
Inc(pc, 2); |
|
|
| 1395 |
end; |
|
|
| 1396 |
end; |
|
|
| 1397 |
if (firstByte = $fd) then |
|
|
| 1398 |
for i := 4 to length(str) do |
|
|
| 1399 |
if str[i] = 'x' then |
|
|
| 1400 |
str[i] := 'y'; |
|
|
| 1401 |
disassemble := pc; |
|
|
| 1402 |
end; |
|
|
| 1403 |
|
|
|
| 1404 |
end. |
|
|