mirror of
https://github.com/jhbruhn/eurorack.git
synced 2025-03-15 11:05:49 +00:00
13 lines
221 B
C++
13 lines
221 B
C++
#include <stm32f37x_conf.h>
|
|
|
|
#include "stmlib/system/bootloader_utils.h"
|
|
|
|
using namespace stmlib;
|
|
|
|
const uint32_t kStartAddress = 0x08008000;
|
|
|
|
int main(void) {
|
|
SystemInit();
|
|
Uninitialize();
|
|
JumpTo(kStartAddress);
|
|
}
|