TestHarness<TCycle>.CopyToMemory Method
Overloads
CopyToMemory(UInt16, ReadOnlySpan<Byte>)
Copies a span of bytes into memory starting at the specified address.
public virtual void CopyToMemory(ushort address, ReadOnlySpan<Byte> source);
View source
Parameters
| Name |
Type |
Description |
| address |
UInt16 |
The starting memory address where the bytes will be copied. |
| source |
ReadOnlySpan<Byte> |
The bytes to copy into memory. |
CopyToMemory(UInt16, IReadOnlyList<Byte>)
Copies a sequence of bytes into memory starting at the specified address.
public virtual void CopyToMemory(ushort address, IReadOnlyList<Byte> source);
View source
Parameters
| Name |
Type |
Description |
| address |
UInt16 |
The starting memory address where the bytes will be copied. |
| source |
IReadOnlyList<Byte> |
The bytes to copy into memory. |