This commit is contained in:
2017-05-11 11:31:25 +02:00
parent 23ecfdd906
commit 3474c80c07
6 changed files with 281 additions and 2 deletions

View File

@@ -808,6 +808,11 @@ namespace PIC_Simulator.PIC
Register[index] = SetBit(Register[index], bit, wert);
}
public void SetRegisterOhneBank(uint index, uint wert)
{
Register[index] = wert;
}
public bool GetRegisterOhneBank(uint index, uint bit)
{
return GetBit(Register[index], bit);