2023-10-15 13:09:01 +00:00
|
|
|
#ifndef CEDA_CURSOR_H
|
|
|
|
#define CEDA_CURSOR_H
|
|
|
|
|
2023-10-22 09:40:03 +00:00
|
|
|
#include <stdbool.h>
|
2023-10-15 13:09:01 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
void cursor_setRaw(uint16_t address);
|
|
|
|
|
|
|
|
void cursor_setXY(uint8_t x, uint8_t y);
|
|
|
|
|
|
|
|
void cursor_setStartRaster(uint8_t start);
|
|
|
|
|
|
|
|
void cursor_setEndRaster(uint8_t end);
|
|
|
|
|
2023-10-22 09:40:03 +00:00
|
|
|
void cursor_enable(bool enable);
|
|
|
|
|
2023-10-15 13:09:01 +00:00
|
|
|
#endif
|