fpc/tests/webtbs/tw18334.pp
Jonas Maebe bbf0e35a51 + Support for ARM CPS/CPSIE/CPSID instructions and mode flag bitfield
operand (patch by Jeppe Johansen, mantis #18334)

git-svn-id: trunk@16750 -
2011-01-11 16:02:51 +00:00

15 lines
152 B
ObjectPascal

{ %cpu=arm }
{ %norun }
procedure test; assembler;
asm
cps #0
cpsie aif, #0
cpsid aif, #0
cpsie aif
cpsid aif
end;
begin
end.