cool-bun-demo/system/copper.h

13 lines
231 B
C
Raw Normal View History

2024-05-02 16:52:06 +00:00
#ifndef __COPPER_H__
#define __COPPER_H__
#define COPPERLIST_SIZE (10000)
2024-05-27 18:58:13 +00:00
#include "../types.h"
2024-05-02 16:52:06 +00:00
uint16_t * prepareNewCopperlist(void);
void setCopperlist(uint16_t *copperlist);
void freeCopperlist(uint16_t *copperlist);
#endif