write8 method

void write8(
  1. int offset,
  2. int value
)

Writes 8-bits from mapped physical memory, starting at the specified byte offset, relative to the base address the MMIO handle was opened with.

Implementation

void write8(int offset, int value) {
  _checkError(_nativeMMIOwrite8(_mmioHandle, offset, value));
}