qemu_rv32_virt_chip/
lib.rs

1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2022.
4
5//! Chip support for the qemu-system-riscv32 virt machine
6
7#![no_std]
8#![crate_name = "qemu_rv32_virt_chip"]
9#![crate_type = "rlib"]
10
11pub use virtio;
12
13mod interrupts;
14pub mod virtio_mmio;
15
16pub mod chip;
17pub mod clint;
18pub mod plic;
19pub mod uart;