Browse Source

* set the proper TextRec size for i8086

git-svn-id: branches/i8086@23854 -
nickysn 12 years ago
parent
commit
a0e683bed6
1 changed files with 5 additions and 1 deletions
  1. 5 1
      compiler/symdef.pas

+ 5 - 1
compiler/symdef.pas

@@ -2499,7 +2499,11 @@ implementation
 {$ifdef cpu16bitaddr}
         case filetyp of
           ft_text :
-            savesize:=96;
+            {$ifdef avr}
+              savesize:=96;
+            {$else avr}
+              savesize:=576;
+            {$endif avr}
           ft_typed,
           ft_untyped :
             savesize:=76;