2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: Simply call the exec function
8 #define AROS_TAGRETURNTYPE APTR
10 #include "alib_intern.h"
12 /*****************************************************************************
15 #define NO_INLINE_STDARG /* turn off inline def */
16 #include <proto/exec.h>
18 AROS_UFH4(APTR
, AsmCreatePool
,
21 AROS_UFHA(ULONG
, MemFlags
, D0
),
22 AROS_UFHA(ULONG
, PuddleSize
, D1
),
23 AROS_UFHA(ULONG
, ThreshSize
, D2
),
24 AROS_UFHA(struct ExecBase
*, SysBase
, A6
))
44 *****************************************************************************/
47 return CreatePool(MemFlags
, PuddleSize
, ThreshSize
);