git-svn-id: trunk@28253 -
@@ -17,6 +17,9 @@ program ExecStack;
{$endif}
{$ifdef cpumips}
ret: array[0..1] of longword;
+{$endif}
+{$ifdef cpum68k}
+ ret: word;
DoNothing: proc;
@@ -51,7 +54,13 @@ program ExecStack;
ret[1]:=0; { delay slot }
DoNothing:=proc(@ret);
DoNothing;
-{$endif}
+{$endif cpumips}
+ ret:=$4E74;
+ DoNothing:=proc(@ret);
+ DoNothing;
+{$endif cpum68k}
+
end;
begin
DoIt;