TRIS_A + TRIS_B

This commit is contained in:
2017-05-11 10:49:42 +02:00
parent e3985dc887
commit 7cb924f580
4 changed files with 710 additions and 7 deletions

View File

@@ -790,7 +790,7 @@ namespace PIC_Simulator.PIC
SetRegister(index, SetBit(GetRegister(index), bit, wert));
}
private void SetRegisterOhneBank(uint index, uint bit, bool wert)
public void SetRegisterOhneBank(uint index, uint bit, bool wert)
{
Register[index] = SetBit(Register[index], bit, wert);
}