aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-13 02:14:37 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-13 02:14:37 +0200
commitcc2b95c9144d8a3486314766b645021a9a914d25 (patch)
tree41653955cb214cb45b655c89efc8d51cb46b0433 /Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
parentfea4547613d57f8fcc8cb94671c54d82a5b11dbb (diff)
downloadTango-cc2b95c9144d8a3486314766b645021a9a914d25.tar.gz
Tango-cc2b95c9144d8a3486314766b645021a9a914d25.zip
Implemented power up screen.
Implemented power on emulator. Implemented power via machine operator.
Diffstat (limited to 'Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs b/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
index 161277459..99532195e 100644
--- a/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
+++ b/Software/Visual_Studio/Tango.Emulations/EmulatorBase.cs
@@ -108,7 +108,7 @@ namespace Tango.Emulations
/// <summary>
/// Stops this instance.
/// </summary>
- public async Task Stop()
+ public virtual async Task Stop()
{
if (IsStarted)
{
@@ -120,7 +120,7 @@ namespace Tango.Emulations
/// <summary>
/// Starts this instance.
/// </summary>
- public async Task Start()
+ public virtual async Task Start()
{
if (!IsStarted)
{