virtualSoC  0.6.2
baskett
Vcsos.Komponent.Timer Class Reference
+ Inheritance diagram for Vcsos.Komponent.Timer:

Public Member Functions

 Timer ()
 
void Create ()
 
void Start ()
 

Properties

string Name [get]
 
string Author [get]
 

Detailed Description

Constructor & Destructor Documentation

◆ Timer()

Vcsos.Komponent.Timer.Timer ( )
30  : base("Timer R0", "Anna-Sophia Schroeck")
31  {
32  m_pTimer = new System.Timers.Timer ();
33  }

Member Function Documentation

◆ Create()

void Vcsos.Komponent.Timer.Create ( )
35  {
36  m_pTimer.Interval = VM.Instance.CurrentCore.Register.Stack.Pop32();
37  m_pTimer.AutoReset = VM.Instance.CurrentCore.Register.Stack.Pop32() == 1;
38  m_pTimer.Elapsed += TimerElapsed;
39 
40  }

◆ Start()

void Vcsos.Komponent.Timer.Start ( )
42  {
43  m_pTimer.Start ();
44  }
void Start()
Definition: Timer.cs:41

Property Documentation

◆ Author

string Vcsos.Komponent.vmKomponente.Author
getinherited

◆ Name

string Vcsos.Komponent.vmKomponente.Name
getinherited

The documentation for this class was generated from the following file: