1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2024-06-11 18:29:30 +00:00
6502-cpp/examples/test.cpp
Jason Turner 24012c1ff7 Fix use of address 1 to literal 1 for skip instructions
Thank you to the viewers who pointed out the issue at the
end of the stream.

At this point, simple code works, but the conditional
from the joystick input does not seem to work yet.

 * also add location header for linker
 * also filter errors and directives better
2021-04-22 18:54:00 -06:00

45 lines
715 B
C++

#include <cstdint>
enum Colors : uint8_t
{
WHITE=0x01
};
static volatile uint8_t &memory_loc(const uint16_t loc)
{
return *reinterpret_cast<volatile uint8_t *>(loc);
}
static void decrement_border_color()
{
--memory_loc(0xd020);
}
static void increment_border_color()
{
++memory_loc(0xd020);
}
static bool joystick_down()
{
uint8_t joystick_state = memory_loc(0xDC00);
return (joystick_state & 0x2) == 0;
}
int main()
{
const auto background_color = [](Colors col) {
memory_loc(0xd021) = static_cast<uint8_t>(col);
};
background_color(Colors::WHITE);
while(true) {
if (joystick_down()) {
// increment_border_color();
} else {
decrement_border_color();
}
}
}