using Pigmeo; using Pigmeo.Extensions; using Pigmeo.MCU; using System; namespace app002 { class MyTestClass { static void Main() { Registers.PORTA = 59; Registers.PORTA++; Registers.PORTA += 10; Registers.PORTB = Registers.PORTA; Registers.PORTB--; Registers.PORTA -= 96; } } }