write8 method
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));
}