M6502InstructionEmulator.Serialize Method
Overloads
| Name | Description |
|---|---|
Serialize(Span<Byte>) |
Serializes this emulator's M6502 CPU state. |
Serialize(Stream) |
Serializes this emulator's M6502 CPU state. |
Serialize(Span<Byte>)
Serializes this emulator's M6502 CPU state.
public void Serialize(Span<Byte> destination);
Parameters
| Name | Type | Description |
|---|---|---|
destination |
Span<Byte> |
The destination span to write the CPU state to. |
Serialize(Stream)
Serializes this emulator's M6502 CPU state.
public void Serialize(Stream stream);
Parameters
| Name | Type | Description |
|---|---|---|
stream |
Stream |
The stream to write the CPU state to. |