Addlw instruction (#4)

* Added addlw command

* Write to program list

* Included CommandUtils as helpter class. Sorted classes into packages

* Revert changes on HelloWorld

* Revert "Revert changes on HelloWorld"

This reverts commit a08a336864fb2aa2bbc5a4e37ca360765774965e.

* Added example execution of Addlw command
This commit is contained in:
DarkressX
2023-05-22 23:55:01 +02:00
committed by GitHub
parent 9e73a08b8f
commit 47cf49abea
7 changed files with 93 additions and 8 deletions

6
commands/Command.java Normal file
View File

@@ -0,0 +1,6 @@
package commands;
public interface Command
{
void execute();
}