pub struct Ym2612 {
Show 17 fields source: Box<dyn Audio>, selected_reg_0: Option<NonZeroU8>, selected_reg_1: Option<NonZeroU8>, fm_clock_period: Duration, next_fm_clock: u64, envelope_clock: u64, channels: Vec<Channel>, dac: Dac, timer_a_enable: bool, timer_a: u16, timer_a_current: u16, timer_a_overflow: bool, timer_b_enable: bool, timer_b: u8, timer_b_current: u8, timer_b_overflow: bool, registers: Vec<u8>,
}

Fields§

§source: Box<dyn Audio>§selected_reg_0: Option<NonZeroU8>§selected_reg_1: Option<NonZeroU8>§fm_clock_period: Duration§next_fm_clock: u64§envelope_clock: u64§channels: Vec<Channel>§dac: Dac§timer_a_enable: bool§timer_a: u16§timer_a_current: u16§timer_a_overflow: bool§timer_b_enable: bool§timer_b: u8§timer_b_current: u8§timer_b_overflow: bool§registers: Vec<u8>

Implementations§

source§

impl Ym2612

source

pub fn new<H, E>( host: &mut H, clock_frequency: Frequency ) -> Result<Self, HostError<E>>
where H: Host<Error = E>,

source§

impl Ym2612

source

fn get_sample(&mut self, fm_clock: u64) -> f32

source§

impl Ym2612

source

pub fn set_register(&mut self, clock: Instant, bank: u8, reg: u8, data: u8)

source

fn get_block_and_fnumber(&self, bank: u8, lower_reg: u8) -> (u8, u16)

source

fn update_fnumber(&mut self, bank: u8, lower_reg: u8)

Trait Implementations§

source§

impl Addressable for Ym2612

source§

fn size(&self) -> usize

source§

fn read( &mut self, _clock: Instant, addr: Address, data: &mut [u8] ) -> Result<(), Error>

source§

fn write( &mut self, clock: Instant, addr: Address, data: &[u8] ) -> Result<(), Error>

source§

fn read_u8(&mut self, clock: Instant, addr: u64) -> Result<u8, Error>

source§

fn read_beu16(&mut self, clock: Instant, addr: u64) -> Result<u16, Error>

source§

fn read_leu16(&mut self, clock: Instant, addr: u64) -> Result<u16, Error>

source§

fn read_beu32(&mut self, clock: Instant, addr: u64) -> Result<u32, Error>

source§

fn read_leu32(&mut self, clock: Instant, addr: u64) -> Result<u32, Error>

source§

fn write_u8( &mut self, clock: Instant, addr: u64, value: u8 ) -> Result<(), Error>

source§

fn write_beu16( &mut self, clock: Instant, addr: u64, value: u16 ) -> Result<(), Error>

source§

fn write_leu16( &mut self, clock: Instant, addr: u64, value: u16 ) -> Result<(), Error>

source§

fn write_beu32( &mut self, clock: Instant, addr: u64, value: u32 ) -> Result<(), Error>

source§

fn write_leu32( &mut self, clock: Instant, addr: u64, value: u32 ) -> Result<(), Error>

source§

impl Steppable for Ym2612

source§

fn step(&mut self, system: &System) -> Result<Duration, Error>

source§

fn on_error(&mut self, _system: &System)

source§

impl Transmutable for Ym2612

source§

fn as_addressable(&mut self) -> Option<&mut dyn Addressable>

source§

fn as_steppable(&mut self) -> Option<&mut dyn Steppable>

source§

fn as_interruptable(&mut self) -> Option<&mut dyn Interruptable>

source§

fn as_debuggable(&mut self) -> Option<&mut dyn Debuggable>

source§

fn as_inspectable(&mut self) -> Option<&mut dyn Inspectable>

Auto Trait Implementations§

§

impl !RefUnwindSafe for Ym2612

§

impl !Send for Ym2612

§

impl !Sync for Ym2612

§

impl Unpin for Ym2612

§

impl !UnwindSafe for Ym2612

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.