VM.VirtualMachine.RegisterPortOutHandler C# (CSharp) 메소드

RegisterPortOutHandler() 공개 메소드

public RegisterPortOutHandler ( short port, Action handler ) : void
port short
handler Action
리턴 void
        public void RegisterPortOutHandler(short port, Action<short> handler)
        {
            deviceOutHandlers.Add(port, handler);
        }