pweingar / BASIC816

A BASIC interpreter for the 65C816 processor, targetting the C256 Foenix computer.
GNU General Public License v3.0
15 stars 5 forks source link

Doc bug: "tile set or tile map" #20

Open dansanderson opened 4 years ago

dansanderson commented 4 years ago

In the reference text for the tile-related statements, there are multiple references to "tile set or tile map," as if they both refer to the same concept. These should be corrected to refer to the proper concept in each instance.

If I'm understanding correctly, a tile set is the collection of up to 256 8x8 bitmaps and an affiliated bitmap LUT, and you can have up to four file sets (0-3). A tile map is a rectangle of two-byte tile IDs (tile number and set number), a visibility status, and a rendering offset, and you can have up to four tile maps (0-3).

pweingar commented 4 years ago

I'll try to make this a little clearer in the next release.