mirror of
https://github.com/lefticus/6502-cpp.git
synced 2024-10-31 14:07:53 +00:00
24012c1ff7
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
45 lines
715 B
C++
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();
|
|
}
|
|
}
|
|
}
|