[del] Add ASID type

This commit is contained in:
Berkus Decker 2020-12-29 16:17:55 +02:00
parent 0fa4f3bc4e
commit abc84ec6aa
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,6 @@
/*
* SPDX-License-Identifier: BlueOak-1.0.0
* Copyright (c) Berkus Decker <berkus+vesper@metta.systems>
*/
pub type ASID = u16;

View File

@ -3,8 +3,10 @@
* Copyright (c) Berkus Decker <berkus+vesper@metta.systems>
*/
mod asid;
mod phys_addr;
mod virt_addr;
pub use asid::*;
pub use phys_addr::*;
pub use virt_addr::*;