Basic output system

This commit is contained in:
2024-04-22 19:57:27 -07:00
parent 082fbf3e80
commit aae336ca66
13 changed files with 959 additions and 91 deletions

View File

@@ -1,4 +1,9 @@
mod device;
mod palette;
mod screen;
pub use device::Device;
pub use palette::PALETTE;
pub use screen::{Screen, SCREEN_W, SCREEN_H};
pub type VResult<T> = Result<T, anyhow::Error>;