1 #![no_std] 2 #![allow(non_camel_case_types)] 3 #![feature(cfg_version)] 4 // C string literals were stabilized in Rust 1.77 5 #![cfg_attr(not(version("1.77")), feature(c_str_literals))] 6 7 mod err; 8 mod hal; 9 mod pci; 10