The write1 method of the DllLib class contains the following signatures:
write1(Object ptr, int ofs, byte val)
write1(int ptr, int ofs, byte val)
write1(int ptr, byte val)
Writes one byte of data to the memory location that is specified by a base address and an offset.
public static native void write1(Object ptr, int ofs, byte val);
ptr | The base address to write to. |
ofs | The offset from the base address. |
val | The value to write. |
Writes one byte of data to the memory location that is specified by a base address and an offset.
public static native void write1(int ptr, int ofs, byte val);
ptr | The base address to write to. |
ofs | The offset from the base address. |
val | The value to write. |
Writes a byte to the specified memory location.
public static void write1(int ptr, byte val);
ptr | The address in memory where the byte will be written. |
val | The value to write. |