From dcbdd1383d215ec4951ba74ce994e12e0a881267 Mon Sep 17 00:00:00 2001 From: John Breaux Date: Sat, 29 Apr 2023 23:33:11 -0500 Subject: [PATCH] lib.rs: Remove Chip8 unused Chip8 struct (was moved) --- src/lib.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e114fe6..a3cd369 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,13 +22,5 @@ pub use cpu::{ CPU, }; pub use error::{Error, Result}; -/// Holds the state of a Chip-8 -#[derive(Clone, Debug, Default, PartialEq)] -pub struct Chip8 { - /// Contains the registers, flags, and operating state for a single Chip-8 - pub cpu: cpu::CPU, - /// Contains the memory of a chip-8 - pub bus: cpu::bus::Bus, -} pub use screen::Screen; pub use traits::{AutoCast, FallibleAutoCast, Grab};