aquova / chip8-book

An introduction to Chip-8 emulation using Rust

Home Page:https://aquova.net/chip8/chip8.pdf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Section 4.2 error: character dimensions

marvincyk opened this issue · comments

From section 4.2 of the book:

Each character is made up of eight rows of five pixels, with each row using a byte of data, meaning that each letter altogether takes up five bytes of data.

This should either be "five rows of eight pixels" or "eight columns of five pixels".

Thanks for catching that! Fixed in e0b3888