Selaa lähdekoodia

+ enabled the command line option for the medium memory model

git-svn-id: trunk@24847 -
nickysn 12 vuotta sitten
vanhempi
commit
435a97059d
1 muutettua tiedostoa jossa 3 lisäystä ja 4 poistoa
  1. 3 4
      compiler/options.pas

+ 3 - 4
compiler/options.pas

@@ -1848,11 +1848,10 @@ begin
                       begin
                         if (target_info.system in [system_i8086_msdos]) then
                           begin
-                            Writeln('>', Upper(Copy(More,j+1,255)), '<');
                             case Upper(Copy(More,j+1,255)) of
-                              'TINY':  init_settings.x86memorymodel:=mm_tiny;
-                              'SMALL': init_settings.x86memorymodel:=mm_small;
-                              'MEDIUM',
+                              'TINY':    init_settings.x86memorymodel:=mm_tiny;
+                              'SMALL':   init_settings.x86memorymodel:=mm_small;
+                              'MEDIUM':  init_settings.x86memorymodel:=mm_medium;
                               'COMPACT',
                               'LARGE',
                               'HUGE': IllegalPara(opt); { these are not implemented yet }