improved de6502 - needs to write to disk instead of cli
This commit is contained in:
+5
-2
@@ -1,7 +1,7 @@
|
||||
use crate::address_mode::AddressMode;
|
||||
use crate::operation::Operation;
|
||||
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct OpInfo {
|
||||
/// What is the operation
|
||||
pub operation: Operation,
|
||||
@@ -11,4 +11,7 @@ pub struct OpInfo {
|
||||
pub length: u8,
|
||||
/// CPU Cycles to complete the instruction
|
||||
pub cycles: u8,
|
||||
}
|
||||
/// Format string for disassembly
|
||||
pub format_prefix: &'static str,
|
||||
pub format_postfix: &'static str
|
||||
}
|
||||
Reference in New Issue
Block a user