init repo

This commit is contained in:
Tristan Krause 2019-03-26 09:57:01 +01:00
commit a68bb3aecc
8 changed files with 79 additions and 0 deletions

9
main.cpp Normal file
View file

@ -0,0 +1,9 @@
#include <iostream>
#include "drv/b15f.h"
int main()
{
B15F& drv = B15F::getInstance();
drv.init();
std::cout << "heelol" << std::endl;
}