implemented bsf Instruction #26

Merged
Darkress merged 1 commits from bsfInstruction into main 2023-06-07 21:19:12 +02:00
3 changed files with 28 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ class Main
ArrayList<Command> program = new ArrayList<>();
Memory.workingRegister = 0x01;
Memory.setRegister(0x14, 0xA5); //240 << 224
program.add(CommandDecoder.decode(0x1114));
program.add(CommandDecoder.decode(0x1594));
for(int i = 0; i < program.size(); i++)
{
program.get(ProgramCounter.getPc()).execute();

View File

@@ -0,0 +1,26 @@
package de.darkress.pic16f84sim.commands;
import de.darkress.pic16f84sim.microcontroller.Memory;
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
public class Bsf extends BitOrientedCommandUtils implements Command
{
private final int address;
private int bitPlacement;
public Bsf(int input)
{
address = input & 0x007F;
bitPlacement = checkBitPlacement(input);
}
@Override
public void execute()
{
int result = Memory.getRegister(address);
result |= (1 << bitPlacement);
Memory.setRegister(address, result);
ProgramCounter.incPC();
}
}

View File

@@ -59,8 +59,7 @@ public class CommandDecoder
case 0x1000:
return new Bcf(input);
case 0x1400:
//bsf();
break;
return new Bsf(input);
case 0x1800:
//btfsc();
break;