Implemented subtraction

This commit is contained in:
2024-06-24 16:55:15 +02:00
parent 597cb9abed
commit b018d8de61
9 changed files with 92 additions and 28 deletions

View File

@ -10,6 +10,7 @@ const (
LABEL
MOVE
RETURN
SUB
SYSCALL
)
@ -34,6 +35,9 @@ func (m Mnemonic) String() string {
case RETURN:
return "return"
case SUB:
return "sub"
case SYSCALL:
return "syscall"
}