This commit is contained in:
2025-07-01 13:08:23 -04:00
parent d97774e97b
commit f9c938757f
5 changed files with 325 additions and 886 deletions
+4
View File
@@ -3,8 +3,12 @@ use crate::operation::Operation;
#[derive(Debug, Copy, Clone)]
pub struct OpInfo {
/// What is the operation
pub operation: Operation,
/// How does this operation access memory
pub mode: AddressMode,
/// Bytes to represent the instruction and parameters
pub length: u8,
/// CPU Cycles to complete the instruction
pub cycles: u8,
}