Exemplo n.º 1
0
        public void TestAllInstructions()
        {
            _instructionList = new Instructions();

            PipeLinedDataPath pipeLineTest = new PipeLinedDataPath(_instructionList);

            pipeLineTest.ProcessInstructions();
        }
Exemplo n.º 2
0
        public void TestNOOPInstruction()
        {
            _instructionList = new TestInstructions()
            {
                mipsInstructions = new List <int>()
                {
                    0x00000000
                }
            };

            PipeLinedDataPath pipeLineTest = new PipeLinedDataPath(_instructionList);

            pipeLineTest.ProcessInstructions();
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            PipeLinedDataPath pipe = new PipeLinedDataPath(new Instructions());

            pipe.ProcessInstructions();
        }