Robin Mueller d6f69d4a54
Some checks are pending
Rust/va108xx-rs/pipeline/pr-main Build queued...
Finished flashloader and bootloader implementation
2024-09-30 11:41:52 +02:00

10 lines
105 B
Rust

#![no_std]
#[cfg(test)]
mod tests {
#[test]
fn simple() {
assert_eq!(1 + 1, 2);
}
}