2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
10 #include <aros/debug.h>
11 #include <proto/arossupport.h>
13 #include <aros/libcall.h>
14 #include <exec/types.h>
15 #include <libraries/lowlevel.h>
17 #include "lowlevel_intern.h"
19 /*****************************************************************************
22 #include <proto/lowlevel.h>
24 AROS_LH1(ULONG
, SystemControlA
,
27 AROS_LHA(struct TagItem
*, tags
, A1
),
30 struct LowLevelBase
*, LowLevelBase
, 12, LowLevel
)
39 This function is unimplemented.
43 *****************************************************************************/
47 struct TagItem
*tag
, *tagp
= tags
;;
49 aros_print_not_implemented ("lowlevel/SystemControlA");
51 /* For now, dump all tags in debug mode */
52 while ((tag
= LibNextTagItem(&tagp
))) {
53 D(bug("%s: Tag SCON_Dummy+%d, Data %p\n", __func__
, tag
->ti_Tag
- SCON_Dummy
, (APTR
)tag
->ti_Data
));
56 return (tags
? tags
->ti_Tag
: 0);
59 } /* SystemControlA */