mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 20:09:27 +02:00
+ support NEC V20/V30's REPC/REPNC prefixes in the assembler reader
git-svn-id: trunk@33320 -
This commit is contained in:
parent
a79676bd1c
commit
be83ae47b9
@ -68,9 +68,9 @@ type
|
||||
end;
|
||||
|
||||
const
|
||||
AsmPrefixes = 6;
|
||||
AsmPrefixes = 6{$ifdef i8086}+2{$endif i8086};
|
||||
AsmPrefix : array[0..AsmPrefixes-1] of TasmOP =(
|
||||
A_LOCK,A_REP,A_REPE,A_REPNE,A_REPNZ,A_REPZ
|
||||
A_LOCK,A_REP,A_REPE,A_REPNE,A_REPNZ,A_REPZ{$ifdef i8086},A_REPC,A_REPNC{$endif i8086}
|
||||
);
|
||||
|
||||
AsmOverrides = 6;
|
||||
|
Loading…
Reference in New Issue
Block a user