10/08/22
New Goal: I will draw a sprite from the sprite memory.
var readMem = Mem.Keys.*;
if (readMem & (0x1 << 4) == 0) {
x = x + 1;
}
if (readMem & (0x1 << 5) == 0) {
x = x - 1;
}
if (readMem & (0x1 << 6) == 0) {
y = y - 1;
}
if (readMem & (0x1 << 7) == 0) {
y = y + 1;
}
So of course for the actual game I will have to clean that up. For now though I have enough of a springboard that I can start to write a simple game. I know that the best way to figure out what you don't know is to start writing code and run into walls, so that is what I will do.
Ongoing Goal: Write a game.