Added memory address patching

This commit is contained in:
2023-10-29 12:24:40 +01:00
parent d6be76b85a
commit fbe6aa80bb
9 changed files with 98 additions and 35 deletions

View File

@ -5,6 +5,7 @@ type Mnemonic uint8
const (
NONE Mnemonic = iota
MOV
MOVDATA
SYSCALL
)
@ -13,6 +14,9 @@ func (m Mnemonic) String() string {
case MOV:
return "mov"
case MOVDATA:
return "mov"
case SYSCALL:
return "syscall"
}