New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / graphics / setchiprev.c
blob134631144f844b2c6712995bea764622d500cc3b
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function SetChipRev()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include "graphics_intern.h"
11 /*****************************************************************************
13 NAME */
14 #include <proto/graphics.h>
16 AROS_LH1(ULONG, SetChipRev,
18 /* SYNOPSIS */
19 AROS_LHA(ULONG, ChipRev, D0),
21 /* LOCATION */
22 struct GfxBase *, GfxBase, 148, Graphics)
24 /* FUNCTION
26 INPUTS
27 ChipRev - Chip Rev that you would like to be enabled
29 RESULT
30 chiprevbits - Actual bits set in GfxBase->ChipRevBits0
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 INTERNALS
42 HISTORY
45 ******************************************************************************/
47 AROS_LIBFUNC_INIT
48 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
50 #warning TODO: Write graphics/SetChipRev()
51 aros_print_not_implemented ("SetChipRev");
53 return GfxBase->ChipRevBits0;
55 AROS_LIBFUNC_EXIT
56 } /* SetChipRev */