2024-02-24 21:02:09 +00:00
|
|
|
use femtos::{Instant, Duration, Frequency};
|
|
|
|
|
|
|
|
use moa_core::{System, Error, Address, Steppable, Addressable, Transmutable};
|
2024-03-02 05:17:09 +00:00
|
|
|
use moa_host::Tty;
|
2021-09-30 06:21:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
const REG_MR1A_MR2A: Address = 0x01;
|
|
|
|
const REG_SRA_RD: Address = 0x03;
|
|
|
|
const REG_CSRA_WR: Address = 0x03;
|
|
|
|
const REG_CRA_WR: Address = 0x05;
|
|
|
|
const REG_TBA_WR: Address = 0x07;
|
|
|
|
const REG_RBA_RD: Address = 0x07;
|
2021-10-08 17:52:15 +00:00
|
|
|
|
2021-10-10 00:35:23 +00:00
|
|
|
const REG_MR1B_MR2B: Address = 0x11;
|
|
|
|
const REG_SRB_RD: Address = 0x13;
|
|
|
|
const REG_CSRB_WR: Address = 0x13;
|
|
|
|
const REG_CRB_WR: Address = 0x15;
|
|
|
|
const REG_TBB_WR: Address = 0x17;
|
|
|
|
const REG_RBB_RD: Address = 0x17;
|
2021-10-08 17:52:15 +00:00
|
|
|
|
2021-09-30 06:21:11 +00:00
|
|
|
const REG_ACR_WR: Address = 0x09;
|
|
|
|
|
|
|
|
const REG_CTUR_WR: Address = 0x0D;
|
|
|
|
const REG_CTLR_WR: Address = 0x0F;
|
|
|
|
const REG_START_RD: Address = 0x1D;
|
|
|
|
const REG_STOP_RD: Address = 0x1F;
|
|
|
|
|
|
|
|
const REG_IPCR_RD: Address = 0x09;
|
|
|
|
const REG_OPCR_WR: Address = 0x1B;
|
|
|
|
const REG_INPUT_RD: Address = 0x1B;
|
|
|
|
const REG_OUT_SET: Address = 0x1D;
|
|
|
|
const REG_OUT_RESET: Address = 0x1F;
|
|
|
|
|
|
|
|
const REG_ISR_RD: Address = 0x0B;
|
|
|
|
const REG_IMR_WR: Address = 0x0B;
|
|
|
|
const REG_IVR_WR: Address = 0x19;
|
|
|
|
|
2021-10-01 19:25:23 +00:00
|
|
|
|
|
|
|
// Status Register Bits (SRA/SRB)
|
2021-10-11 22:16:04 +00:00
|
|
|
#[allow(dead_code)]
|
2021-10-01 19:25:23 +00:00
|
|
|
const SR_RECEIVED_BREAK: u8 = 0x80;
|
2021-10-11 22:16:04 +00:00
|
|
|
#[allow(dead_code)]
|
2021-10-01 19:25:23 +00:00
|
|
|
const SR_FRAMING_ERROR: u8 = 0x40;
|
2021-10-11 22:16:04 +00:00
|
|
|
#[allow(dead_code)]
|
2021-10-01 19:25:23 +00:00
|
|
|
const SR_PARITY_ERROR: u8 = 0x20;
|
2021-10-11 22:16:04 +00:00
|
|
|
#[allow(dead_code)]
|
2021-10-01 19:25:23 +00:00
|
|
|
const SR_OVERRUN_ERROR: u8 = 0x10;
|
2021-10-11 22:16:04 +00:00
|
|
|
#[allow(dead_code)]
|
2021-10-01 19:25:23 +00:00
|
|
|
const SR_TX_EMPTY: u8 = 0x08;
|
2021-10-11 22:16:04 +00:00
|
|
|
#[allow(dead_code)]
|
2021-10-01 19:25:23 +00:00
|
|
|
const SR_TX_READY: u8 = 0x04;
|
2021-10-11 22:16:04 +00:00
|
|
|
#[allow(dead_code)]
|
2021-10-01 19:25:23 +00:00
|
|
|
const SR_RX_FULL: u8 = 0x02;
|
2021-10-11 22:16:04 +00:00
|
|
|
#[allow(dead_code)]
|
2021-10-01 19:25:23 +00:00
|
|
|
const SR_RX_READY: u8 = 0x01;
|
|
|
|
|
|
|
|
|
2021-10-07 20:57:50 +00:00
|
|
|
// Interrupt Status/Mask Bits (ISR/IVR)
|
2021-12-13 20:00:24 +00:00
|
|
|
//const ISR_INPUT_CHANGE: u8 = 0x80;
|
|
|
|
//const ISR_CH_B_BREAK_CHANGE: u8 = 0x40;
|
2021-10-07 20:57:50 +00:00
|
|
|
const ISR_CH_B_RX_READY_FULL: u8 = 0x20;
|
|
|
|
const ISR_CH_B_TX_READY: u8 = 0x10;
|
|
|
|
const ISR_TIMER_CHANGE: u8 = 0x08;
|
2021-12-13 20:00:24 +00:00
|
|
|
//const ISR_CH_A_BREAK_CHANGE: u8 = 0x04;
|
2021-10-07 20:57:50 +00:00
|
|
|
const ISR_CH_A_RX_READY_FULL: u8 = 0x02;
|
|
|
|
const ISR_CH_A_TX_READY: u8 = 0x01;
|
|
|
|
|
|
|
|
|
2023-03-06 04:19:49 +00:00
|
|
|
const DEV_NAME: &str = "mc68681";
|
2021-09-30 06:21:11 +00:00
|
|
|
|
2023-03-06 04:19:49 +00:00
|
|
|
#[derive(Default)]
|
2021-10-10 00:35:23 +00:00
|
|
|
pub struct MC68681Port {
|
2021-12-13 20:00:24 +00:00
|
|
|
tty: Option<Box<dyn Tty>>,
|
|
|
|
status: u8,
|
2021-10-15 05:04:14 +00:00
|
|
|
|
2021-12-13 20:00:24 +00:00
|
|
|
tx_enabled: bool,
|
2021-10-15 05:04:14 +00:00
|
|
|
|
2021-12-13 20:00:24 +00:00
|
|
|
rx_enabled: bool,
|
|
|
|
input: u8,
|
2021-10-10 00:35:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MC68681Port {
|
2021-10-23 02:36:05 +00:00
|
|
|
pub fn connect(&mut self, pty: Box<dyn Tty>) -> Result<String, Error> {
|
|
|
|
let name = pty.device_name();
|
2021-10-10 00:35:23 +00:00
|
|
|
println!("{}: opening pts {}", DEV_NAME, name);
|
2021-10-16 23:11:50 +00:00
|
|
|
self.tty = Some(pty);
|
2021-10-10 00:35:23 +00:00
|
|
|
Ok(name)
|
|
|
|
}
|
|
|
|
|
2021-10-15 05:04:14 +00:00
|
|
|
pub fn send_byte(&mut self, data: u8) {
|
2021-10-23 02:36:05 +00:00
|
|
|
self.tty.as_mut().map(|tty| tty.write(data));
|
2021-10-15 05:04:14 +00:00
|
|
|
self.set_tx_status(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_tx_status(&mut self, value: bool) {
|
|
|
|
match value {
|
2024-03-17 18:03:52 +00:00
|
|
|
true => {
|
|
|
|
self.status |= SR_TX_READY | SR_TX_EMPTY;
|
|
|
|
},
|
|
|
|
false => {
|
|
|
|
self.status &= !(SR_TX_READY | SR_TX_EMPTY);
|
|
|
|
},
|
2021-10-15 05:04:14 +00:00
|
|
|
}
|
2021-10-10 00:35:23 +00:00
|
|
|
}
|
|
|
|
|
2021-10-15 05:04:14 +00:00
|
|
|
pub fn set_rx_status(&mut self, value: bool) {
|
|
|
|
match value {
|
2024-03-17 18:03:52 +00:00
|
|
|
true => {
|
|
|
|
self.status |= SR_RX_READY;
|
|
|
|
},
|
|
|
|
false => {
|
|
|
|
self.status &= !SR_RX_READY;
|
|
|
|
},
|
2021-10-15 05:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_rx(&mut self) -> Result<bool, Error> {
|
|
|
|
if self.rx_enabled && (self.status & SR_RX_READY) == 0 && self.tty.is_some() {
|
2021-10-10 00:35:23 +00:00
|
|
|
let tty = self.tty.as_mut().unwrap();
|
2021-10-23 02:36:05 +00:00
|
|
|
let result = tty.read();
|
2023-03-06 04:34:30 +00:00
|
|
|
if let Some(input) = result {
|
|
|
|
self.input = input;
|
|
|
|
self.set_rx_status(true);
|
|
|
|
return Ok(true);
|
2021-10-10 00:35:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(false)
|
|
|
|
}
|
|
|
|
|
2021-10-15 05:04:14 +00:00
|
|
|
pub fn check_tx(&mut self) -> bool {
|
|
|
|
self.set_tx_status(self.tx_enabled);
|
|
|
|
self.tx_enabled
|
|
|
|
}
|
|
|
|
|
2021-10-10 00:35:23 +00:00
|
|
|
pub fn handle_command(&mut self, data: u8) -> Option<bool> {
|
2024-03-17 18:03:52 +00:00
|
|
|
let rx_cmd = data & 0x03;
|
2021-10-10 00:35:23 +00:00
|
|
|
if rx_cmd == 0b01 {
|
|
|
|
self.rx_enabled = true;
|
|
|
|
} else if rx_cmd == 0b10 {
|
|
|
|
self.rx_enabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
let tx_cmd = (data & 0x0C) >> 2;
|
|
|
|
if tx_cmd == 0b01 {
|
|
|
|
self.tx_enabled = true;
|
2021-10-15 05:04:14 +00:00
|
|
|
self.set_tx_status(true);
|
2021-10-10 00:35:23 +00:00
|
|
|
return Some(true);
|
|
|
|
} else if tx_cmd == 0b10 {
|
|
|
|
self.tx_enabled = false;
|
2021-10-15 05:04:14 +00:00
|
|
|
self.set_tx_status(false);
|
2021-10-10 00:35:23 +00:00
|
|
|
return Some(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct MC68681 {
|
2023-04-23 22:46:47 +00:00
|
|
|
frequency: Frequency,
|
|
|
|
|
2021-12-13 20:00:24 +00:00
|
|
|
acr: u8,
|
2021-10-10 00:35:23 +00:00
|
|
|
pub port_a: MC68681Port,
|
|
|
|
pub port_b: MC68681Port,
|
|
|
|
|
2021-12-13 20:00:24 +00:00
|
|
|
int_mask: u8,
|
|
|
|
int_status: u8,
|
|
|
|
int_vector: u8,
|
2021-10-10 00:35:23 +00:00
|
|
|
|
2021-12-13 20:00:24 +00:00
|
|
|
timer_preload: u16,
|
|
|
|
timer_count: u16,
|
|
|
|
is_timing: bool,
|
|
|
|
timer_divider: u16,
|
2021-10-11 22:16:04 +00:00
|
|
|
|
2021-12-13 20:00:24 +00:00
|
|
|
input_pin_change: u8,
|
|
|
|
input_state: u8,
|
|
|
|
output_conf: u8,
|
|
|
|
output_state: u8,
|
2021-09-30 06:21:11 +00:00
|
|
|
}
|
|
|
|
|
2023-03-06 04:19:49 +00:00
|
|
|
impl Default for MC68681 {
|
|
|
|
fn default() -> Self {
|
2021-09-30 06:21:11 +00:00
|
|
|
MC68681 {
|
2023-04-23 22:46:47 +00:00
|
|
|
frequency: Frequency::from_hz(3_686_400),
|
|
|
|
|
2021-10-08 17:52:15 +00:00
|
|
|
acr: 0,
|
2023-03-06 04:19:49 +00:00
|
|
|
port_a: MC68681Port::default(),
|
|
|
|
port_b: MC68681Port::default(),
|
2021-10-08 17:52:15 +00:00
|
|
|
|
2021-10-07 20:57:50 +00:00
|
|
|
int_mask: 0,
|
|
|
|
int_status: 0,
|
2021-10-07 18:35:15 +00:00
|
|
|
int_vector: 0,
|
2021-10-08 17:52:15 +00:00
|
|
|
|
|
|
|
timer_preload: 0,
|
|
|
|
timer_count: 0,
|
|
|
|
is_timing: true,
|
2021-10-15 05:04:14 +00:00
|
|
|
timer_divider: 0,
|
2021-10-11 22:16:04 +00:00
|
|
|
|
|
|
|
input_pin_change: 0,
|
|
|
|
input_state: 0,
|
|
|
|
output_conf: 0,
|
|
|
|
output_state: 0,
|
2021-09-30 06:21:11 +00:00
|
|
|
}
|
|
|
|
}
|
2023-03-06 04:19:49 +00:00
|
|
|
}
|
2021-10-01 19:25:23 +00:00
|
|
|
|
2023-03-06 04:19:49 +00:00
|
|
|
impl MC68681 {
|
2021-10-24 05:22:02 +00:00
|
|
|
fn set_interrupt_flag(&mut self, flag: u8, value: bool) {
|
|
|
|
self.int_status = (self.int_status & !flag) | (if value { flag } else { 0 });
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_interrupt_state(&mut self, system: &System) -> Result<(), Error> {
|
2024-03-17 18:03:52 +00:00
|
|
|
system
|
|
|
|
.get_interrupt_controller()
|
|
|
|
.set((self.int_status & self.int_mask) != 0, 4, self.int_vector)
|
2021-10-24 05:22:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Steppable for MC68681 {
|
2024-02-24 21:02:09 +00:00
|
|
|
fn step(&mut self, system: &System) -> Result<Duration, Error> {
|
2021-10-15 05:04:14 +00:00
|
|
|
if self.port_a.check_rx()? {
|
|
|
|
self.set_interrupt_flag(ISR_CH_A_RX_READY_FULL, true);
|
2021-10-01 19:25:23 +00:00
|
|
|
}
|
2021-10-09 18:00:32 +00:00
|
|
|
|
2021-10-15 05:04:14 +00:00
|
|
|
if self.port_b.check_rx()? {
|
|
|
|
self.set_interrupt_flag(ISR_CH_B_RX_READY_FULL, true);
|
2021-10-01 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2021-10-08 17:52:15 +00:00
|
|
|
if self.is_timing {
|
2021-10-15 05:04:14 +00:00
|
|
|
self.timer_divider = self.timer_divider.wrapping_sub(1);
|
|
|
|
if self.timer_divider == 0 {
|
|
|
|
self.timer_divider = 1;
|
|
|
|
self.timer_count = self.timer_count.wrapping_sub(1);
|
|
|
|
|
|
|
|
if self.timer_count == 0 {
|
|
|
|
self.set_interrupt_flag(ISR_TIMER_CHANGE, true);
|
|
|
|
if (self.acr & 0x40) == 0 {
|
|
|
|
self.is_timing = false;
|
|
|
|
} else {
|
|
|
|
self.timer_count = self.timer_preload;
|
|
|
|
}
|
2021-10-08 17:52:15 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-07 20:57:50 +00:00
|
|
|
}
|
|
|
|
|
2021-10-08 17:52:15 +00:00
|
|
|
self.check_interrupt_state(system)?;
|
|
|
|
|
2021-10-15 05:04:14 +00:00
|
|
|
if self.port_a.check_tx() {
|
|
|
|
self.set_interrupt_flag(ISR_CH_A_TX_READY, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.port_b.check_tx() {
|
|
|
|
self.set_interrupt_flag(ISR_CH_B_TX_READY, true);
|
|
|
|
}
|
|
|
|
|
2023-04-23 22:46:47 +00:00
|
|
|
Ok(self.frequency.period_duration())
|
2021-10-01 19:25:23 +00:00
|
|
|
}
|
2021-09-30 06:21:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Addressable for MC68681 {
|
2023-06-08 02:56:00 +00:00
|
|
|
fn size(&self) -> usize {
|
2021-09-30 06:21:11 +00:00
|
|
|
0x30
|
|
|
|
}
|
|
|
|
|
2024-02-24 21:02:09 +00:00
|
|
|
fn read(&mut self, _clock: Instant, addr: Address, data: &mut [u8]) -> Result<(), Error> {
|
2021-09-30 06:21:11 +00:00
|
|
|
match addr {
|
2024-03-17 18:03:52 +00:00
|
|
|
REG_SRA_RD => data[0] = self.port_a.status,
|
2021-10-01 19:25:23 +00:00
|
|
|
REG_RBA_RD => {
|
2021-10-10 00:35:23 +00:00
|
|
|
data[0] = self.port_a.input;
|
2021-10-15 05:04:14 +00:00
|
|
|
self.port_a.set_rx_status(false);
|
|
|
|
self.set_interrupt_flag(ISR_CH_A_RX_READY_FULL, false);
|
2021-10-08 17:52:15 +00:00
|
|
|
},
|
2024-03-17 18:03:52 +00:00
|
|
|
REG_SRB_RD => data[0] = self.port_b.status,
|
2021-10-08 17:52:15 +00:00
|
|
|
REG_RBB_RD => {
|
2021-10-10 00:35:23 +00:00
|
|
|
data[0] = self.port_b.input;
|
2021-10-15 05:04:14 +00:00
|
|
|
self.port_b.set_rx_status(false);
|
|
|
|
self.set_interrupt_flag(ISR_CH_B_RX_READY_FULL, false);
|
2021-10-01 19:25:23 +00:00
|
|
|
},
|
2021-10-07 20:57:50 +00:00
|
|
|
REG_ISR_RD => {
|
|
|
|
data[0] = self.int_status;
|
|
|
|
},
|
2021-10-11 22:16:04 +00:00
|
|
|
REG_IPCR_RD => {
|
|
|
|
data[0] = self.input_pin_change;
|
|
|
|
},
|
|
|
|
REG_INPUT_RD => {
|
|
|
|
data[0] = self.input_state;
|
|
|
|
},
|
2021-10-08 17:52:15 +00:00
|
|
|
REG_START_RD => {
|
|
|
|
self.timer_count = self.timer_preload;
|
|
|
|
self.is_timing = true;
|
|
|
|
},
|
|
|
|
REG_STOP_RD => {
|
|
|
|
if (self.acr & 0x40) == 0 {
|
|
|
|
// Counter Mode
|
|
|
|
self.is_timing = false;
|
|
|
|
self.timer_count = self.timer_preload;
|
|
|
|
} else {
|
|
|
|
// Timer Mode
|
|
|
|
// Do nothing except reset the ISR bit
|
|
|
|
}
|
2021-10-15 05:04:14 +00:00
|
|
|
self.set_interrupt_flag(ISR_TIMER_CHANGE, false);
|
2021-10-08 17:52:15 +00:00
|
|
|
},
|
2024-03-17 18:03:52 +00:00
|
|
|
_ => {},
|
2021-10-01 19:25:23 +00:00
|
|
|
}
|
2021-10-02 00:53:55 +00:00
|
|
|
|
2021-10-15 21:37:31 +00:00
|
|
|
if addr != REG_SRA_RD && addr != REG_SRB_RD {
|
2024-02-24 21:02:09 +00:00
|
|
|
log::debug!("{}: read from {:0x} of {:0x}", DEV_NAME, addr, data[0]);
|
2021-10-15 21:37:31 +00:00
|
|
|
}
|
|
|
|
|
2021-10-27 00:33:23 +00:00
|
|
|
Ok(())
|
2021-10-01 19:25:23 +00:00
|
|
|
}
|
|
|
|
|
2024-02-24 21:02:09 +00:00
|
|
|
fn write(&mut self, _clock: Instant, addr: Address, data: &[u8]) -> Result<(), Error> {
|
|
|
|
log::debug!("{}: writing {:0x} to {:0x}", DEV_NAME, data[0], addr);
|
2021-10-01 19:25:23 +00:00
|
|
|
match addr {
|
2021-10-11 22:16:04 +00:00
|
|
|
REG_MR1A_MR2A | REG_MR1B_MR2B | REG_CSRA_WR | REG_CSRB_WR => {
|
|
|
|
// NOTE we aren't simulating the serial speeds, so we aren't doing anything with these settings atm
|
|
|
|
},
|
2021-10-08 17:52:15 +00:00
|
|
|
REG_ACR_WR => {
|
|
|
|
self.acr = data[0];
|
2024-03-17 18:03:52 +00:00
|
|
|
},
|
2021-10-01 19:25:23 +00:00
|
|
|
REG_TBA_WR => {
|
2024-02-24 21:02:09 +00:00
|
|
|
log::debug!("{}a: write {}", DEV_NAME, data[0] as char);
|
2021-10-15 05:04:14 +00:00
|
|
|
self.port_a.send_byte(data[0]);
|
|
|
|
self.set_interrupt_flag(ISR_CH_A_TX_READY, false);
|
2021-10-01 19:25:23 +00:00
|
|
|
},
|
2021-10-08 17:52:15 +00:00
|
|
|
REG_CRA_WR => {
|
2023-03-06 04:34:30 +00:00
|
|
|
if let Some(value) = self.port_a.handle_command(data[0]) {
|
|
|
|
self.set_interrupt_flag(ISR_CH_A_TX_READY, value);
|
2021-10-08 17:52:15 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
REG_TBB_WR => {
|
2024-02-24 21:02:09 +00:00
|
|
|
log::debug!("{}b: write {:x}", DEV_NAME, data[0]);
|
2021-10-15 05:04:14 +00:00
|
|
|
self.port_b.send_byte(data[0]);
|
|
|
|
self.set_interrupt_flag(ISR_CH_B_TX_READY, false);
|
2021-10-08 17:52:15 +00:00
|
|
|
},
|
|
|
|
REG_CRB_WR => {
|
2023-03-06 04:34:30 +00:00
|
|
|
if let Some(value) = self.port_b.handle_command(data[0]) {
|
|
|
|
self.set_interrupt_flag(ISR_CH_B_TX_READY, value);
|
2021-10-08 17:52:15 +00:00
|
|
|
}
|
|
|
|
},
|
2021-10-07 18:35:15 +00:00
|
|
|
REG_CTUR_WR => {
|
2021-10-08 17:52:15 +00:00
|
|
|
self.timer_preload = (self.timer_preload & 0x00FF) | ((data[0] as u16) << 8);
|
2021-10-07 18:35:15 +00:00
|
|
|
},
|
|
|
|
REG_CTLR_WR => {
|
2021-10-08 17:52:15 +00:00
|
|
|
self.timer_preload = (self.timer_preload & 0xFF00) | (data[0] as u16);
|
2021-10-07 18:35:15 +00:00
|
|
|
},
|
2021-10-07 20:57:50 +00:00
|
|
|
REG_IMR_WR => {
|
|
|
|
self.int_mask = data[0];
|
|
|
|
},
|
2021-10-07 18:35:15 +00:00
|
|
|
REG_IVR_WR => {
|
|
|
|
self.int_vector = data[0];
|
|
|
|
},
|
2021-10-11 22:16:04 +00:00
|
|
|
REG_OPCR_WR => {
|
|
|
|
self.output_conf = data[0];
|
|
|
|
},
|
|
|
|
REG_OUT_SET => {
|
|
|
|
self.output_state |= data[0];
|
|
|
|
},
|
|
|
|
REG_OUT_RESET => {
|
|
|
|
self.output_state &= !data[0];
|
|
|
|
},
|
2024-03-17 18:03:52 +00:00
|
|
|
_ => {},
|
2021-10-01 19:25:23 +00:00
|
|
|
}
|
2021-10-06 02:58:22 +00:00
|
|
|
Ok(())
|
2021-10-01 19:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-02 00:53:55 +00:00
|
|
|
|
2021-10-17 17:39:43 +00:00
|
|
|
impl Transmutable for MC68681 {
|
|
|
|
fn as_addressable(&mut self) -> Option<&mut dyn Addressable> {
|
|
|
|
Some(self)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn as_steppable(&mut self) -> Option<&mut dyn Steppable> {
|
|
|
|
Some(self)
|
|
|
|
}
|
|
|
|
}
|