Browse Source

* fixed comment

Nikolay Nikolov 1 year ago
parent
commit
fd49da6735
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/mos6502/cpubase.pas

+ 1 - 1
compiler/mos6502/cpubase.pas

@@ -572,7 +572,7 @@ unit cpubase;
     { Checks if Subset is a subset of c (e.g. "less than" is a subset of "less than or equal" }
     { Checks if Subset is a subset of c (e.g. "less than" is a subset of "less than or equal" }
     function condition_in(const Subset, c: TAsmCond): Boolean;
     function condition_in(const Subset, c: TAsmCond): Boolean;
       begin
       begin
-        { Z80 has no condition subsets }
+        { 6502 has no condition subsets }
         Result := {(c.cond = C_None) or} conditions_equal(Subset, c);
         Result := {(c.cond = C_None) or} conditions_equal(Subset, c);
       end;
       end;