Implemented indirect calls

This commit is contained in:
2024-08-16 20:39:04 +02:00
parent 499fe8aec8
commit 34aeba740a
4 changed files with 45 additions and 5 deletions

View File

@ -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: