pub trait ZxMemory {
    const ROM_SIZE: usize;
    const RAMTOP: u16;
    const PAGES_MAX: u8;
    const SCR_BANKS_MAX: usize;
    const ROM_BANKS_MAX: usize;
    const RAM_BANKS_MAX: usize;
    const PAGE_SIZE: usize = 16_384usize;
Show 35 methods fn reset(&mut self); fn read(&self, addr: u16) -> u8; fn read16(&self, addr: u16) -> u16; fn read_screen(&self, screen_bank: usize, addr: u16) -> u8; fn write(&mut self, addr: u16, val: u8); fn write16(&mut self, addr: u16, val: u16); fn mem_ref(&self) -> &[u8] ; fn mem_mut(&mut self) -> &mut [u8] ; fn screen_ref(
        &self,
        screen_bank: usize
    ) -> Result<&[u8; 6912], ZxMemoryError>; fn screen_mut(
        &mut self,
        screen_bank: usize
    ) -> Result<&mut [u8; 6912], ZxMemoryError>; fn page_kind(&self, page: u8) -> Result<MemoryKind, ZxMemoryError>; fn page_bank(&self, page: u8) -> Result<(MemoryKind, usize), ZxMemoryError>; fn page_ref(&self, page: u8) -> Result<&[u8], ZxMemoryError>; fn page_mut(&mut self, page: u8) -> Result<&mut [u8], ZxMemoryError>; fn rom_bank_ref(&self, rom_bank: usize) -> Result<&[u8], ZxMemoryError>; fn rom_bank_mut(
        &mut self,
        rom_bank: usize
    ) -> Result<&mut [u8], ZxMemoryError>; fn ram_bank_ref(&self, ram_bank: usize) -> Result<&[u8], ZxMemoryError>; fn ram_bank_mut(
        &mut self,
        ram_bank: usize
    ) -> Result<&mut [u8], ZxMemoryError>; fn map_rom_bank(
        &mut self,
        rom_bank: usize,
        page: u8
    ) -> Result<(), ZxMemoryError>; fn map_ram_bank(
        &mut self,
        ram_bank: usize,
        page: u8
    ) -> Result<(), ZxMemoryError>; fn map_exrom(
        &mut self,
        _exrom_bank: Rc<[u8]>,
        _page: u8
    ) -> Result<(), ZxMemoryError> { ... } fn unmap_exrom(&mut self, _exrom_bank: &Rc<[u8]>) { ... } fn is_exrom_at(&self, _page: u8) -> bool { ... } fn has_mapped_exrom(&self, _exrom_bank: &Rc<[u8]>) -> bool { ... } fn page_index_at(&self, address: u16) -> Result<MemPageOffset, ZxMemoryError> { ... } fn rom_ref(&self) -> &[u8] { ... } fn rom_mut(&mut self) -> &mut [u8] { ... } fn ram_ref(&self) -> &[u8] { ... } fn ram_mut(&mut self) -> &mut [u8] { ... } fn load_into_rom<R>(&mut self, rd: R) -> Result<(), ZxMemoryError>
    where
        R: Read
, { ... } fn load_into_rom_bank<R>(
        &mut self,
        rom_bank: usize,
        rd: R
    ) -> Result<(), ZxMemoryError>
    where
        R: Read
, { ... } fn iter_pages<A>(
        &self,
        address_range: A
    ) -> Result<MemPageRefIter<'_, Self>, ZxMemoryError>
    where
        A: RangeBounds<u16>
, { ... } fn for_each_page_mut<A, F>(
        &mut self,
        address_range: A,
        f: F
    ) -> Result<(), ZxMemoryError>
    where
        A: RangeBounds<u16>,
        F: for<'a> FnMut(PageMutSlice<'a>) -> Result<(), ZxMemoryError>
, { ... } fn load_into_mem<A, R>(
        &mut self,
        address_range: A,
        rd: R
    ) -> Result<(), ZxMemoryError>
    where
        A: RangeBounds<u16>,
        R: Read
, { ... } fn fill_mem<R, F>(
        &mut self,
        address_range: R,
        f: F
    ) -> Result<(), ZxMemoryError>
    where
        R: RangeBounds<u16>,
        F: FnMut() -> u8
, { ... }
}
Expand description

A trait for interfacing ZX Spectrum’s various memory types.

Required Associated Constants§

The size of the whole ROM, not just one bank.

The last available memory address.

A maximum value allowed for a page argument.

A maximum value allowed for a screen_bank argument

A maximum value allowed for a rom_bank argument

A maximum value allowed for a ram_bank argument

Provided Associated Constants§

This is just a hint. Actual page sizes may vary.

Required Methods§

Resets memory banks.

If addr is above RAMTOP the function should return std::u8::MAX.

If addr is above RAMTOP the function should return std::u16::MAX.

Reads a byte from screen memory at the given addr.

The screen banks are different from memory banks. E.g. for Spectrum 128k then screen bank 0 resides in a memory bank 5 and screen bank 1 resides in a memory bank 7. For 16k/48k Spectrum, there is only one screen bank: 0.

addr is in screen address space (0 addresses the first byte of screen memory).

Panics

If addr is above the upper limit of screen memory address space the function should panic. If screen_bank doesn’t exist the function should also panic.

If addr is above RAMTOP the function should do nothing.

If addr is above RAMTOP the function should do nothing.

Provides a continuous view into the whole memory (all banks: ROM + RAM).

Provides a continuous view into the whole memory (all banks: ROM + RAM).

Returns a reference to the screen memory.

See ZxMemory::read_screen for an explanation of screen_bank argument.

Returns a mutable reference to the screen memory.

See ZxMemory::read_screen for an explanation of screen_bank argument.

Returns an enum describing what kind of memory is currently paged at the specified page.

If an EX-ROM bank is currently mapped at the specified page a MemoryKind::Rom will be returned in this instance.

page should be less or equal to PAGES_MAX.

Returns a tuple of an enum describing what kind of memory and which bank of that memory is currently paged at the specified page.

Note

Unlike ZxMemory::page_kind this method ignores if an EX-ROM bank is currently mapped at the specified page. In this instance, the returned value corresponds to a memory bank that would be mapped at the page if the EX-ROM bank wasn’t mapped.

page should be less or equal to PAGES_MAX.

page should be less or equal to PAGES_MAX.

page should be less or equal to PAGES_MAX.

rom_bank should be less or equal to ROM_BANKS_MAX.

rom_bank should be less or equal to ROM_BANKS_MAX.

ram_bank should be less or equal to RAM_BANKS_MAX.

ram_bank should be less or equal to RAM_BANKS_MAX.

rom_bank should be less or equal to ROM_BANKS_MAX and page should be less or equal to PAGES_MAX.

ram_bank should be less or equal to RAM_BANKS_MAX and page should be less or equal to PAGES_MAX.

Provided Methods§

Maps EX-ROM bank at the specified page.

exrom_bank should be one of the attachable EX-ROMS and page should be less or equal to PAGES_MAX.

Only one EX-ROM can be mapped at the same time. If an EX-ROM bank is already mapped when calling this function it will be unmapped first, regardless of the page, the previous EX-ROM bank has been mapped at.

Not all types of memory support attaching external ROMs.

Unmaps an external ROM if the currently mapped EX-ROM bank is the same as in the argument. Otherwise does nothing.

Returns true if an EX-ROM bank is currently being mapped at the specified memory page.

Returns true if a specified EX-ROM bank is currently being mapped.

Returns Ok(MemPageOffset) if address is equal to or less than ZxMemory::RAMTOP.

Provides a continuous view into the ROM memory (all banks).

Provides a continuous mutable view into the ROM memory (all banks).

Provides a continuous view into RAM (all banks).

Provides a continuous mutable view into RAM (all banks).

The data read depends on how big ROM is ZxMemory::ROM_SIZE. Results in an error when the ROM data size is less than the ROM_SIZE.

Results in an error when the ROM data size is less than the ROM bank’s size.

Returns an iterator of memory page slice references intersecting with a given address range.

Errors

May return an ZxMemoryError::UnsupportedAddressRange error.

Iterates over mutable memory page slices PageMutSlice intersecting with a given address range passing the slices to the closure f.

Errors

May return an ZxMemoryError::UnsupportedAddressRange error or an error returned by the provided closure.

Reads data into a paged-in memory area at the given address range.

Fills currently paged-in pages with the data produced by the closure F.

Useful to fill RAM with random bytes.

Provide the address range.

NOTE: this will overwrite both ROM and RAM locations.

Implementors§