2024-05-25 18:31:09 +00:00
|
|
|
|
#include "planar.h"
|
|
|
|
|
|
2020-08-03 17:06:17 +00:00
|
|
|
|
// Blits the given monochrome 8×8 [sprite] to the VRAM position indicated by
|
|
|
|
|
// [vram_offset_topleft] and [first_bit], in the given [col] via the GRCG.
|
|
|
|
|
void grcg_put_8x8_mono(
|
2020-08-21 17:18:28 +00:00
|
|
|
|
vram_offset_t vram_offset_topleft,
|
2020-08-03 17:06:17 +00:00
|
|
|
|
char first_bit,
|
2022-01-20 12:38:21 +00:00
|
|
|
|
const dots8_t sprite[8],
|
2023-06-25 18:41:05 +00:00
|
|
|
|
vc2 col
|
2020-08-03 17:06:17 +00:00
|
|
|
|
);
|