Files
EightBitNet/EightBit/PortEventArgs.cs
2025-08-07 09:56:25 +01:00

12 lines
288 B
C#

// <copyright file="PortEventArgs.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public sealed class PortEventArgs(Register16 value) : EventArgs
{
public Register16 Port { get; } = value;
}
}