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












                                                                         
// 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;

pub use self::cmos::Cmos;
pub use self::serial::Serial;
pub use self::i8042::I8042Device;