Skip to content

Commit

Permalink
Fixes XML comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaMarkic committed Jun 5, 2021
1 parent 8347ab1 commit a914353
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ namespace Righthand.ViceMonitor.Bridge.Commands
/// </summary>
/// <param name="SideEffects">Should the write cause side effects? </param>
/// <param name="StartAddress"></param>
/// <param name="EndAddress"></param>
/// <param name="MemSpace">Describes which part of the computer you want to write.</param>
/// <param name="BankId">Describes which bank you want. This is dependent on your machine. If the memspace selected doesn't support banks, this value is ignored. </param>
/// <param name="MemoryContent">Memory content to set.</param>
/// <remarks>MemoryContent will be disposed together with this command.</remarks>
public record MemorySetCommand(byte SideEffects, ushort StartAddress, MemSpace MemSpace, ushort BankId, ManagedBuffer MemoryContent)
: ViceCommand<EmptyViceResponse>(CommandType.MemorySet), IDisposable
{
/// <summary>
/// EndAddress
/// </summary>
public ushort EndAddress => (ushort)(StartAddress + (ushort)MemoryContent.Size - 1);
/// <inheritdoc />
public override uint ContentLength { get; } = sizeof(byte) + sizeof(ushort) + sizeof(ushort) + sizeof(byte) + sizeof(ushort) + MemoryContent.Size;
Expand Down

0 comments on commit a914353

Please sign in to comment.