Browse Source

* fixed handling of 16-bit consts in the Z80 asm reader

git-svn-id: branches/z80@44807 -
nickysn 5 years ago
parent
commit
957eaf721b
1 changed files with 2 additions and 0 deletions
  1. 2 0
      compiler/rautils.pas

+ 2 - 0
compiler/rautils.pas

@@ -54,6 +54,8 @@ type
       OPR_CONSTANT  : (val:longint);
 {$elseif defined(i8086)}
       OPR_CONSTANT  : (val:longint);
+{$elseif defined(Z80)}
+      OPR_CONSTANT  : (val:longint);
 {$else}
       OPR_CONSTANT  : (val:aint);
 {$endif}