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