Exemplo n.º 1
0
        public static void Storer(int j, int m)
        {
            Instruction.Loadrc(j);

            Instruction.Store(m);
        }
Exemplo n.º 2
0
        public static void Storea(int q, int m)
        {
            Instruction.Loada(q);

            Instruction.Store(m);
        }
Exemplo n.º 3
0
        public static void Storea(int q)
        {
            Instruction.Loadc(q);

            Instruction.Store();
        }
Exemplo n.º 4
0
        public static void Loadr(int j, int m)
        {
            Instruction.Loadrc(j);

            Instruction.Load(m);
        }
Exemplo n.º 5
0
        public static void Loada(int q, int m)
        {
            Instruction.Loadc(q);

            Instruction.Load(m);
        }
Exemplo n.º 6
0
        public static void Loada(int q)
        {
            Instruction.Loadc(q);

            Instruction.Load();
        }