c64 0.1.0-alpha.1

Driver for the Commodore 64 platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! "Peripheral Access Crate" for the Commodore 64.
//!
//! This is not a separate crate from the main SDK / HAL; the module is named `pac` to
//! follow the embedded Rust module naming scheme.

pub mod basic;
pub mod interrupt;
pub mod kernal;
pub mod peripheral;
pub mod register;

pub use self::peripheral::Peripherals;