simon987 / Much-Assembly-Required

Assembly programming game
https://muchassemblyrequired.com
GNU General Public License v3.0
925 stars 87 forks source link

Console message buffer max size is broken #234

Closed kevinramharak closed 4 years ago

kevinramharak commented 4 years ago

The wiki states that the internal hardware console buffer can contain up to 40 words but the current implementation actually allows for up to 40 messages instead of 40 words ArrayList<char[]>(40). Each message has a max of 8 words and in the source its always 8 words at the time. The git history shows that it has always been like this, but I always implemented it to work with 40 words max so im not sure.

simon987 commented 4 years ago

IIRC it was always meant to be 40 messages total, the documentation should be changed

kevinramharak commented 4 years ago

I'll fix the docs then