Skip to content

Commit

Permalink
Corr. ex break
Browse files Browse the repository at this point in the history
  • Loading branch information
twilight1794 committed Dec 3, 2024
1 parent fa1a42e commit f16e6bb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions public/programa_asm.js
Original file line number Diff line number Diff line change
Expand Up @@ -650,25 +650,30 @@ class ProgramaAsm {
this.esTipo(TipoParam.RAF, lop[0]);
this.esTipo(TipoParam.RAF, lop[1]);
bytes.push(0x08);
break;
} catch {}
try {
this.esTipo(TipoParam.RDE, lop[0]);
this.esTipo(TipoParam.RHL, lop[1]);
bytes.push(0xeb);
break;
} catch {}
try {
this.esTipo(TipoParam.SP, lop[0]);
try {
this.esTipo(TipoParam.RHL, lop[1]);
bytes.push(0xe3);
break;
} catch {}
try {
this.esTipo(TipoParam.RIX, lop[1]);
bytes.push(0xdd, 0xe3);
break;
} catch {}
try {
this.esTipo(TipoParam.RIY, lop[1]);
bytes.push(0xfd, 0xe3);
break;
} catch {}
throw new TipoParametrosIncorrectoError(ins);
} catch {}
Expand Down

0 comments on commit f16e6bb

Please sign in to comment.