mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-19 07:09:17 +02:00
Fix the ~ is NOR rather than NOT
This commit is contained in:
parent
cda8971baa
commit
2d680afab7
@ -828,13 +828,20 @@ unit raatt;
|
||||
exit;
|
||||
end;
|
||||
|
||||
'!', '~' :
|
||||
'!' :
|
||||
begin
|
||||
actasmtoken:=AS_NOT;
|
||||
c:=current_scanner.asmgetchar;
|
||||
exit;
|
||||
end;
|
||||
|
||||
'~' :
|
||||
begin
|
||||
actasmtoken:=AS_NOR;
|
||||
c:=current_scanner.asmgetchar;
|
||||
exit;
|
||||
end;
|
||||
|
||||
'@' :
|
||||
begin
|
||||
actasmtoken:=AS_AT;
|
||||
|
Loading…
Reference in New Issue
Block a user