cool-bun-demo/system/copper.h

11 lines
209 B
C
Raw Normal View History

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