mbv: clang-format

This commit is contained in:
2025-06-25 08:38:46 -07:00
parent 0c7206f186
commit 7f1f924331
13 changed files with 38 additions and 52 deletions

View File

@@ -1,3 +1,5 @@
#include "timer.h"
#include <cstdint>
#include "bios.h"
@@ -5,14 +7,13 @@
#include "intc.h"
#include "interrupts.h"
#include "pol0.h"
#include "timer.h"
namespace {
Gpio* leds;
Timer* timer;
void Timer0Isr() {
void Timer0Isr() {
static int counter = 0;
leds->data = counter++;