Exemplo n.º 1
0
        public void Test(ProgramReader reader)
        {
            int a = reader.NextInt();
            int b = reader.NextInt();
            int c = reader.NextInt();

            a = a + b + c;
            LibraryHandler.GetResource <Processor>().Registers.SetReturnCarry(a);
        }
Exemplo n.º 2
0
 public override void Init()
 {
     Processor = LibraryHandler.GetResource <Processor>();
 }