Fix the ~ is NOR rather than NOT

This commit is contained in:
Jinyang He 2022-11-05 09:48:55 +08:00 committed by FPK
parent cda8971baa
commit 2d680afab7

View File

@ -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;