Implemented indirect calls
This commit is contained in:
@ -29,6 +29,7 @@ const (
|
||||
|
||||
// Control flow
|
||||
CALL
|
||||
CALL_AT
|
||||
JE
|
||||
JNE
|
||||
JG
|
||||
@ -54,6 +55,8 @@ func (m Mnemonic) String() string {
|
||||
return "and"
|
||||
case CALL:
|
||||
return "call"
|
||||
case CALL_AT:
|
||||
return "call at"
|
||||
case COMMENT:
|
||||
return "comment"
|
||||
case COMPARE:
|
||||
|
Reference in New Issue
Block a user