using System; using System.Collections.Generic; using System.Reflection.Emit; using System.Text; using Sunweaver.Commands.Abstracts; using Sunweaver.Commands.Attributes; using Sunweaver.VM; namespace Sunweaver.Commands { [BasePair("Set the DNA to executing if it was stopped previously. Clears the boolean and integer stacks.")] public class start : BasePair { public override void Implementation(Sunweaver.VM.VirtualMachine VM) { VM.Stack.Clear(); VM.BoolStack.Clear(); VM.Executing = true; } internal override void Compile(ILGenerator il, Locals locals) { throw new NotImplementedException(); } } }