integration on real hardware

This commit is contained in:
2026-03-09 01:10:56 +01:00
parent c54b332e8d
commit cde38d3f75
14 changed files with 1771 additions and 1109 deletions

18
Draw.h
View File

@@ -21,9 +21,25 @@
#include <stdint.h>
void
drawRect( const SstRegs * const sst,
const int16_t x,
const int16_t y,
const int16_t tSizeX,
const int16_t tSizeY);
static inline void
drawSquare( const SstRegs * const sst,
const int16_t x,
const int16_t y,
const int16_t tSize);
const int16_t tSize)
{
drawRect(sst, x, y, tSize, tSize);
}
void
clearScreen( const SstRegs * const sst,
const uint32_t u32Color,
const int16_t u16SizeX,
const int16_t u16SizeY);
#endif //_DEF_DRAW_H_