trevors_chip8_toy/gemma/tests/computer_tests.rs
2024-10-10 09:19:08 -04:00

10 lines
157 B
Rust

use gemmaemu::chip8::computer::Chip8Computer;
#[test]
fn smoke() { assert!(true) }
#[test]
fn test_rom_1_works() {
let mut x = Chip8Computer::new();
}