mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-03 22:50:18 +02:00
* fixed test tmacprocvar for i8086 far code memory models
git-svn-id: trunk@25823 -
This commit is contained in:
parent
38ad4974fd
commit
aab978fd19
@ -6,7 +6,15 @@ program tmacprocvar;
|
||||
|
||||
type
|
||||
SInt8 = -128..127;
|
||||
{$IFDEF CPUI8086}
|
||||
{$if defined(FPC_MM_MEDIUM) or defined(FPC_MM_LARGE) or defined(FPC_MM_HUGE)}
|
||||
Ptr = ^SInt8;far;
|
||||
{$else}
|
||||
Ptr = ^SInt8;near;
|
||||
{$endif}
|
||||
{$ELSE CPUI8086}
|
||||
Ptr = ^SInt8;
|
||||
{$ENDIF}
|
||||
ProcPtr = Ptr; {This is the definition of ProcPtr in Apples Univ Interfaces}
|
||||
|
||||
procedure A;
|
||||
|
Loading…
Reference in New Issue
Block a user