10 lines
154 B
Rust
10 lines
154 B
Rust
use gemma::chip8::computer::Chip8Computer;
|
|
|
|
#[test]
|
|
fn smoke() { assert!(true) }
|
|
|
|
#[test]
|
|
fn test_rom_1_works() {
|
|
let mut x = Chip8Computer::new();
|
|
}
|