dtpic.mui: added MUI4 attributes. (Only attribute
[AROS.git] / arch / m68k-amiga / potgo / freepotbits.c
blobfc53ec7ab2598da7ab0b85ea4731a70382b5b3e5
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: FreePotBits() function.
6 Lang: english
7 */
9 #include <proto/potgo.h>
10 #include <hardware/custom.h>
12 #include "potgo_intern.h"
14 AROS_LH1(void, FreePotBits,
15 AROS_LHA(UWORD, allocated, D0),
16 struct PotgoBase *, PotgoBase, 2, Potgo)
18 AROS_LIBFUNC_INIT
20 volatile struct Custom *custom = (struct Custom*)0xdff000;
22 PotgoBase->allocated &= ~allocated;
23 PotgoBase->data &= ~allocated;
24 custom->potgo = PotgoBase->data;
26 AROS_LIBFUNC_EXIT