|
@@ -9,6 +9,9 @@ program ExecStack;
|
|
|
{$if defined(cpupowerpc) or defined(cpupowerpc64)}
|
|
|
ret: longint;
|
|
|
{$endif}
|
|
|
+{$if defined(cpuaarch64)}
|
|
|
+ ret: longint;
|
|
|
+{$endif}
|
|
|
{$if defined(cpui386) or defined(cpux86_64)}
|
|
|
ret: Byte;
|
|
|
{$endif}
|
|
@@ -40,6 +43,11 @@ program ExecStack;
|
|
|
DoNothing;
|
|
|
{$endif}
|
|
|
{$endif}
|
|
|
+{$if defined(cpuaarch64)}
|
|
|
+ ret := $d65f03c0;
|
|
|
+ DoNothing := proc(@ret);
|
|
|
+ DoNothing;
|
|
|
+{$endif}
|
|
|
{$if defined(cpui386) or defined(cpux86_64)}
|
|
|
ret := $C3;
|
|
|
DoNothing := proc(@ret);
|