Browse Source

+ Z80: support conditional JR

git-svn-id: trunk@45281 -
nickysn 5 years ago
parent
commit
c81f433795
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/z80/cpubase.pas

+ 1 - 1
compiler/z80/cpubase.pas

@@ -63,7 +63,7 @@ unit cpubase;
       call_jmp_instructions = [A_CALL]+jmp_instructions;
 
       { instructions that can have a condition }
-      cond_instructions = [A_CALL,A_JP,A_RET];
+      cond_instructions = [A_CALL,A_JP,A_JR,A_RET];
 
 {*****************************************************************************
                                   Registers