cool-bun-demo/copper.h

13 lines
228 B
C

#ifndef __COPPER_H__
#define __COPPER_H__
#define COPPERLIST_SIZE (10000)
#include "types.h"
uint16_t * prepareNewCopperlist(void);
void setCopperlist(uint16_t *copperlist);
void freeCopperlist(uint16_t *copperlist);
#endif