Removed autodocs of arch specific variants of ROM modules.
[AROS.git] / arch / m68k-amiga / lowlevel / setjoyportattrsa.c
blob8e2216b8176ed08a77a37b092a9df6c50b2d14c6
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #include <aros/debug.h>
11 #include <libraries/lowlevel.h>
13 /* See rom/lowlevel/setjoyportattrsa.c for documentation */
15 AROS_LH2(BOOL, SetJoyPortAttrsA,
16 AROS_LHA(ULONG, portNumber, D0),
17 AROS_LHA(struct TagItem *, tagList, A1),
18 struct LowLevelBase *, LowLevelBase, 22, LowLevel)
20 AROS_LIBFUNC_INIT
21 struct TagItem *ti;
23 while ((ti = LibNextTagItem(&tagList)) != NULL) {
24 D(bug("%s: Tag %d = %p\n", __func__, ti->ti_Tag, (APTR)ti->ti_Data));
26 return FALSE;
28 AROS_LIBFUNC_EXIT
30 } /* SetJoyPortAttrsA */