@@ -0,0 +1,24 @@
+{ Alignment test for stack passed parameters }
+procedure p1(b1,b2,b3,b4,b5,b6,b7,b8:byte);
+begin
+ if b1<>1 then
+ halt(1);
+ if b2<>2 then
+ halt(2);
+ if b3<>3 then
+ if b4<>4 then
+ if b5<>5 then
+ if b6<>6 then
+ if b7<>7 then
+ if b8<>8 then
+end;
+
+ p1(1,2,3,4,5,6,7,8);
+end.