implemented bcfInstruction

This commit is contained in:
Darkress
2023-06-07 20:50:32 +02:00
parent b10ad35ae8
commit a58176dfef
4 changed files with 39 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
package de.darkress.pic16f84sim.commands;
import de.darkress.pic16f84sim.microcontroller.Memory;
public class BitOrientedCommandUtils
{
protected int checkBitPlacement(int input)
{
return ((input & 0x0380) >>7);
}
}