14 lines
367 B
Rust
14 lines
367 B
Rust
// Copyright 2020 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
pub mod aml;
|
|
pub mod rsdp;
|
|
pub mod sdt;
|
|
|
|
pub use self::sdt::HEADER_LEN;
|
|
|
|
fn generate_checksum(data: &[u8]) -> u8 {
|
|
(255 - data.iter().fold(0u8, |acc, x| acc.wrapping_add(*x))).wrapping_add(1)
|
|
}
|