From f7c861e94eb95579c725dcd5d403acd7b4b318e3 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Sun, 9 Jul 2023 21:55:17 +0100 Subject: Assembler optimised blit copy hardcoded to 16x16 --- src/vga.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vga.h') diff --git a/src/vga.h b/src/vga.h index 2441e24..1809c46 100644 --- a/src/vga.h +++ b/src/vga.h @@ -36,5 +36,7 @@ void blit_erase(uint8_t c); /* copy from back buffer to screen */ void blit_copy_all(); void blit_copy(const Rect *dst); +/* only fot 16x16 rects, w and h are ignored */ +void blit_copy16x16(const Rect *dst); #endif /* _VGA_H */ -- cgit v1.2.3