summaryrefslogtreecommitdiff
path: root/hal/hal.h
blob: 4076df30839628c3edb1aa47b93f05494bcc394c (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef HAL_H
#define HAL_H

#include "rcc.h"

void hal_init() {
	rcc_init();
}

#endif