dreamcast/example/cube.cpp
Zack Buhman 25e299feba new "example" directory
This is a reshuffling of filenames, extensions, paths, make rules,
just because I felt like it.
2023-12-12 21:50:39 +08:00

13 lines
123 B
C++

#include <cstdint>
#include "vga.hpp"
#include "memorymap.hpp"
#include "rgb.hpp"
void main()
{
vga();
while (1);
}