1pub mod chip8;
2
3#[cfg(feature = "cli")]
4pub mod platform;
5
6#[cfg(feature = "web")]
7use wasm_bindgen::prelude::*;
8#[cfg(feature = "web")]
9pub mod platform_web;
10#[cfg(feature = "web")]
11#[wasm_bindgen(start)]
12pub fn _set_panic_hook() {
13 console_error_panic_hook::set_once();
14}