File tree Expand file tree Collapse file tree 1 file changed +44
-3
lines changed Expand file tree Collapse file tree 1 file changed +44
-3
lines changed Original file line number Diff line number Diff line change @@ -473,9 +473,50 @@ don't use color 0 - it's transparent instead.
473473
474474There are three "blocks" of 128 tiles each:
475475
476- - Block 0 is $8000-$87FF
477- - Block 1 is $8800-$8FFF
478- - Block 2 is $9000-$97FF
476+ <table >
477+ <thead >
478+ <tr>
479+ <th>Block</th>
480+ <th>VRAM Address</th>
481+ <th>Sprite Tiles</th>
482+ <th colspan="2">BG/Win Tiles</th>
483+ </tr>
484+ </thead >
485+ <tbody >
486+ <tr>
487+ <td></td>
488+ <td></td>
489+ <td></td>
490+ <td><strong>if LCDC.4=1</strong></td>
491+ <td><strong>if LCDC.4=0</strong></td>
492+ </tr>
493+ <tr>
494+ <td>0</td>
495+ <td>$8000 - $87FF</td>
496+ <td>0 - 127</td>
497+ <td>0 - 127</td>
498+ <td></td>
499+ </tr>
500+ <tr>
501+ <td>1</td>
502+ <td>$8800 - $8FFF</td>
503+ <td>128 - 255</td>
504+ <td>128 - 255</td>
505+ <td>
506+ 128 - 255 <br />
507+ or (-127 - 0)
508+ </td>
509+ </tr>
510+ <tr>
511+ <td>2</td>
512+ <td>$9000 - $97FF</td>
513+ <td></td>
514+ <td>(unused)</td>
515+ <td>0 - 127</td>
516+ </tr>
517+ </tbody >
518+ </table >
519+
479520
480521Tiles are always indexed using a 8-bit integer, but the addressing
481522method may differ. The "$8000 method" uses \$ 8000 as its base pointer
You can’t perform that action at this time.
0 commit comments