summary refs log tree commit diff
path: root/src/hw/mod.rs
blob: 5dee04d82e308c17d8b0ee689570e7ac634ff77e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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;
mod proxy;

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