trying to create minimal compiling example

This commit is contained in:
2021-11-03 00:53:36 +01:00
parent 5ccfff2e60
commit f6bc23a7d9
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#![no_main]
#![no_std]
use cortex_m_rt::entry;
use va108xx;
#[entry]
fn main() -> ! {
let mut dp = va108xx::Peripherals::take();
}