From 616add20cffd94c3783baa98ee0d49140a5d4021 Mon Sep 17 00:00:00 2001 From: Ilia Sharin Date: Wed, 13 May 2026 18:23:00 -0400 Subject: [PATCH] Add Scoopex YouTube tutorial and Amiga Graphics Archive references to sprites.md --- 08_graphics/sprites.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/08_graphics/sprites.md b/08_graphics/sprites.md index 818acf2..56737d8 100644 --- a/08_graphics/sprites.md +++ b/08_graphics/sprites.md @@ -85,19 +85,19 @@ Each sprite is stored as a contiguous block in Chip RAM: ``` ┌──────────────────────────────────────────┐ -│ Header Word 0: VSTART/HSTART │ Position control -│ Header Word 1: VSTOP/Control/ATTACH │ +│ Header Word 0: VSTART/HSTART │ Position control +│ Header Word 1: VSTOP/Control/ATTACH │ ├──────────────────────────────────────────┤ -│ Line 0: DATA word (bit 0 of each pixel) │ ← 16 pixels per line -│ Line 0: DATB word (bit 1 of each pixel) │ +│ Line 0: DATA word (bit 0 of each pixel) │ ← 16 pixels per line +│ Line 0: DATB word (bit 1 of each pixel) │ ├──────────────────────────────────────────┤ -│ Line 1: DATA word │ -│ Line 1: DATB word │ +│ Line 1: DATA word │ +│ Line 1: DATB word │ ├──────────────────────────────────────────┤ -│ ...repeat for each line... │ +│ ...repeat for each line... │ ├──────────────────────────────────────────┤ -│ Terminator: 0x0000 │ End marker -│ Terminator: 0x0000 │ +│ Terminator: 0x0000 │ End marker +│ Terminator: 0x0000 │ └──────────────────────────────────────────┘ ```