board_misoc: remove pcr

VexRiscv seems to not support additional hardware performance counter, at least I have not seen any documentation on how to use it.
This commit is contained in:
occheung 2021-08-17 11:49:07 +08:00
parent 01ca114c66
commit 7542105f0f
2 changed files with 0 additions and 5 deletions

View File

@ -131,9 +131,6 @@ static mut API: &'static [(&'static str, *const ())] = &[
api!(cache_get = ::cache_get),
api!(cache_put = ::cache_put),
api!(mfspr = ::board_misoc::spr::mfspr),
api!(mtspr = ::board_misoc::spr::mtspr),
/* direct syscalls */
api!(rtio_init = ::rtio::init),
api!(rtio_get_destination_status = ::rtio::get_destination_status),

View File

@ -15,8 +15,6 @@ extern crate io;
extern crate board_misoc;
extern crate proto_artiq;
pub mod pcr;
pub mod spi;
#[cfg(has_kernel_cpu)]