History of changes to
‘LCD: putrun or putarea?’

2026-02-14





> 2026-02-09: Fix LCD note, see HEAD^

diff --git a/note/lcd-putrun-or-putarea.md b/note/lcd-putrun-or-putarea.md
index 4da7df5..7bc2c7e 100644
--- a/note/lcd-putrun-or-putarea.md
+++ b/note/lcd-putrun-or-putarea.md
@@ -27,7 +27,7 @@ Input parameters of `_putrun` and their constraints:
 - `col     ; assert(0 <= col < xres)`
 - `npixels ; assert(1 <= npixels <= xres - col)`
 
-`_putrun` fallback implemented with `_putarea`:
+`_putarea` implemented using `_putrun`:
 
    col = col_start;
    npixels = col_end - col_start + 1;
go back see note