Implemented division
This commit is contained in:
parent
432397043d
commit
3aedcef9eb
7 changed files with 89 additions and 3 deletions
|
@ -6,6 +6,7 @@ const (
|
|||
NONE Mnemonic = iota
|
||||
ADD
|
||||
CALL
|
||||
DIV
|
||||
JUMP
|
||||
MUL
|
||||
LABEL
|
||||
|
@ -24,6 +25,9 @@ func (m Mnemonic) String() string {
|
|||
case CALL:
|
||||
return "call"
|
||||
|
||||
case DIV:
|
||||
return "div"
|
||||
|
||||
case JUMP:
|
||||
return "jump"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue