//! # Hardware - A module to simulate hardware of LC-3 (Little Computer - 3).
//! The `hardware` module is created to simulate hardware components of the LC-3 (Little Computer - 3) CPU.
//! Main components of the hardware are Memory, Registers and OpCodes.
use opcode;
use Memory;
use MEMORY_SIZE;
use Registers;