Starts adding rust in the toolchain

This commit is contained in:
2025-11-12 22:05:25 +01:00
parent 7bb8b993ae
commit 8326c1f169
11 changed files with 104 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
[package]
name = "fpga_lib"
version = "0.1.0"
edition = "2024"
[dependencies]

View File

@@ -0,0 +1,11 @@
#![no_std]
#[macro_export]
macro_rules! panic_handler {
() => {
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {}
}
};
}