mbv: use new ninja-based build

This commit is contained in:
2025-03-30 17:42:20 -07:00
parent 922f258884
commit a5c14f089b
9 changed files with 307 additions and 85 deletions

View File

@@ -0,0 +1,26 @@
#include <cstdint>
struct Gpio {
volatile uint32_t data;
};
#define gpio0 ((Gpio*)0x40000000)
void sleep(int ms) {
for (int m = 0; m < ms; m++) {
for (int i = 0; i < 10000; i++) {
asm volatile ( "" );
}
}
}
int main() {
int out = 0;
while (1) {
gpio0->data = out;
out = (out + 1) % 256;
sleep(10);
}
}