Allow card.resource to be built with the right name again (by using the
[AROS.git] / arch / m68k-amiga / card / getcardmap.c
blobaf8701f39173e7e0f8e574676ba52ec9bf6ea12f
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: GetCardMap() function.
6 Lang: english
7 */
9 #include "card_intern.h"
11 const struct CardMemoryMap cmm =
13 (UBYTE*)GAYLE_RAM,
14 (UBYTE*)GAYLE_ATTRIBUTE,
15 (UBYTE*)GAYLE_IO,
16 GAYLE_RAMSIZE,
17 GAYLE_ATTRIBUTESIZE,
18 GAYLE_IOSIZE
21 AROS_LH0(struct CardMemoryMap*, GetCardMap,
22 struct CardResource*, CardResource, 3, Card)
24 AROS_LIBFUNC_INIT
26 CARDDEBUG(bug("GetCardMap()\n"));
28 return (struct CardMemoryMap*)&cmm;
30 AROS_LIBFUNC_EXIT