nuaustlptrbankinit.c
966 Bytes
/*======================================================================*/
/* NuSYS */
/* nuaustlptrbankinit.c */
/* */
/* Copyright (C) 1999, NINTENDO Co,Ltd. */
/* */
/*======================================================================*/
/* $Id: nuaustlptrbankinit.c,v 1.1.1.1 2002/10/30 02:07:09 blythe Exp $ */
/*======================================================================*/
#include <nusys.h>
#include <nualstl.h>
void* nuAuPtrBank_ptr = NULL;
/*----------------------------------------------------------------------*/
/* nuAuStlPtrBankInit - サンプルポインタバンクの初期化 */
/* */
/* サンプルポインタバンク(.ptr)の格納領域を確保します。 */
/* */
/* IN: pbk_size ウェーブテーブル参照ポインタのサイズ */
/* RET: 無し */
/*----------------------------------------------------------------------*/
void nuAuStlPtrBankInit(u32 pbk_size)
{
nuAuPtrBank_ptr = nuAuStlHeapAlloc(pbk_size);
}