|
@@ -46,7 +46,8 @@ pub mod cppc;
|
|
|
pub mod nacl;
|
|
|
// §16
|
|
|
pub mod sta;
|
|
|
-
|
|
|
+// §18
|
|
|
+pub mod fwft;
|
|
|
/// Converts SBI EID from str.
|
|
|
const fn eid_from_str(name: &str) -> i32 {
|
|
|
match *name.as_bytes() {
|
|
@@ -335,4 +336,12 @@ mod tests {
|
|
|
const_assert_eq!(0x535441, EID_STA);
|
|
|
const_assert_eq!(0, SET_SHMEM);
|
|
|
}
|
|
|
+ // §18
|
|
|
+ #[test]
|
|
|
+ fn test_fwft() {
|
|
|
+ use crate::fwft::*;
|
|
|
+ const_assert_eq!(0x46574654, EID_FWFT);
|
|
|
+ const_assert_eq!(0, SET);
|
|
|
+ const_assert_eq!(1, GET);
|
|
|
+ }
|
|
|
}
|