1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc(html_logo_url = "https://kos-rs.dreamcast.wiki/kos-rs_logo.png")]
#![doc(html_favicon_url = "https://kos-rs.dreamcast.wiki/kos-rs_favicon.ico")]

//! Bindings to KallistiOS v2.1.0 for Sega Dreamcast.
//!
//! See [dreamcast.rs](https://dreamcast.rs) or the [dreamcast.wiki](https://dreamcast.wiki)
//! for more information on setting up KallistiOS and Rust to use this crate.

// Re-exports
pub use kos_sys as ffi;
pub use kos_sys::libc as libc;

pub mod dbglog;
pub mod mem;
pub use ffi::KOS_INIT_FLAGS as INIT_FLAGS;