Skip to main content

OamShadow

Struct OamShadow 

Source
#[repr(align(256))]
pub struct OamShadow { pub entries: [OamEntry; 40], pub spare: [u8; 96], }
Expand description

A page of entries for OamDma to hand over.

The hardware takes only the high byte of the source address, so this is aligned to 256. Anywhere the linker puts a static is a legal source: work RAM runs 0xC000..0xE000 and read-only data sits below 0x8000, both inside the 0x0000..0xE000 the transfer can read.

Alignment rounds the size up from the 160 bytes of entries, and spare is the remainder. A transfer reads the entries only, so those bytes are free for whatever wants to travel with the objects: per-object velocities, animation counters, what a metasprite each belongs to.

Fields§

§entries: [OamEntry; 40]

What the transfer hands to the hardware.

§spare: [u8; 96]

Room the alignment leaves over. The transfer does not read it.

Implementations§

Source§

impl OamShadow

Source

pub const fn new() -> Self

A page with every object hidden and the spare zeroed.

Trait Implementations§

Source§

impl Default for OamShadow

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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.

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

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

Source§

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>,

Source§

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.