Writes a byte to `offset`.
(&mut self, offset: usize, value: u8)
| 698 | |
| 699 | /// Writes a byte to `offset`. |
| 700 | pub fn write_byte(&mut self, offset: usize, value: u8) { |
| 701 | self.write_byte_internal(offset, value, true); |
| 702 | } |
| 703 | |
| 704 | /// Writes a byte to `offset`, optionally enforcing read-only bits. |
| 705 | fn write_byte_internal(&mut self, offset: usize, value: u8, apply_writable_mask: bool) { |
no test coverage detected