1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-12 09:29:30 +00:00

remove is_stack_address; it's never used

This commit is contained in:
Sam M W 2023-04-02 21:21:46 +01:00
parent 61b8dfe1f2
commit 766143d52f

View File

@ -96,10 +96,6 @@ impl Memory {
self.bytes[start..end].copy_from_slice(values); self.bytes[start..end].copy_from_slice(values);
} }
pub fn is_stack_address(address: u16) -> bool {
address > 0xff && address < 0x200
}
} }
#[cfg(test)] #[cfg(test)]