/*  File:         sample.c
 *  Created:      07-04-96
 *  Updated:      17-05-96
 *  Version:      1.3
 *  Project:      Clicker
 *  Owner:        Jeroen Vermeulen
 *  Requirements: KickStart V39+
 *  Legal:        PD
 *  Status:       Release
 */
#include "sample.h"

/* NOTE: THE DATA IN THIS FILE MUST BE COMPILED FOR *CHIP* MEMORY */

/* Define CHIPMEM_DIRECTIVE to __chip or whatever your compiler needs to put a
 * variable in CHIP memory.
 */

/* This one's for StormC: */
#pragma chip

/* Here's our basic built-in sample.  It's a very crude sine wave but it should
 * do for those very short intervals.
 * NOTE:  SAMPLELENGTH must be defined to the length of this array!
 */
CHIPMEMDIRECTIVE
const signed char Sample[SAMPLELENGTH] = { 0, 60, 100, 127, 100, 60,
                                     		0, -60, -100, -127, -100, -60 };
