public void Stop()
        {
            ArrayList p = new ArrayList();

            p.Add(new HaltInstruction());

            AMProgram program = new AMProgram();

            program.Initialize(p);

            Assert.IsTrue(program.Stop());
        }