arm: clang-format

This commit is contained in:
2022-05-16 20:57:51 -07:00
parent 932b8d4582
commit 574e48474b
4 changed files with 23 additions and 19 deletions

View File

@@ -18,13 +18,13 @@ void ResetHandler() {
main();
while(true) {}
while (true) {
}
}
} // namespace
__attribute__((section(".vector_table"), used))
uint32_t vector_table[16] = {
__attribute__((section(".vector_table"), used)) uint32_t vector_table[16] = {
[StackPointer] = reinterpret_cast<uint32_t>(&_initial_stack_pointer),
[Reset] = reinterpret_cast<uint32_t>(ResetHandler),
};