emulator for a made-up cpu architecture. learning experience :)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
307 B

mod decode;
pub mod isa;
pub mod memory;
pub mod vcore;
pub mod prelude {
pub use crate::isa::{
CmpFlags, InstVariant, Instruction, InstructionData, Register, RegisterFile, State,
};
pub use crate::memory::{MappedMemory, Memory, MemoryMap};
pub use crate::vcore::{CPUError, CPU};
}