summary refs log blame commit diff
path: root/src/hw/mod.rs
blob: b3ecd0ff2b29c3e3b3a33f8fa1cc20780d35f0c3 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                         
        



                                 
                                    
// Copyright 2017 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.

//! Emulates virtual and hardware devices.

mod cmos;
mod serial;
mod i8042;
mod bus;

pub use self::cmos::Cmos;
pub use self::serial::Serial;
pub use self::i8042::I8042Device;
pub use self::bus::{Bus, BusDevice};