write32 method

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

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

Implementation

void write32(int offset, int value) {
  _checkError(_nativeMMIOwrite32(_mmioHandle, offset, value));
}