Add Movlw instruction (#7)

This commit is contained in:
DarkressX
2023-05-23 15:19:51 +02:00
committed by GitHub
parent 347e67c3c8
commit d5eaee2bde
2 changed files with 21 additions and 6 deletions

19
commands/Movlw.java Normal file
View File

@@ -0,0 +1,19 @@
package commands;
import registers.Memory;
public class Movlw extends CommandUtils implements Command
{
private final int literal;
public Movlw(int input)
{
literal = input & 0x00FF;
}
@Override
public void execute()
{
Memory.workingRegister = literal;
}
}