fpc/tests/test/tdes2.pp
florian bc21634b46 * AVR: made avr_des intrinsic more usefull
git-svn-id: trunk@49362 -
2021-05-13 18:59:28 +00:00

12 lines
135 B
ObjectPascal

{ %fail }
{ %cpu=avr }
{ %norun }
uses
intrinsics;
var
data,key : array[0..7] of byte;
begin
avr_des(data,key,true,100);
end.