write16 method

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

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

Implementation

void write16(int offset, int value) {
  _checkError(_nativeMMIOwrite16(_mmioHandle, offset, value));
}