diff options
author | John van Groningen | 2013-06-25 14:27:13 +0000 |
---|---|---|
committer | John van Groningen | 2013-06-25 14:27:13 +0000 |
commit | d6c80d109778a4bff0bf29aec34825ea4b8d31cc (patch) | |
tree | 3a1bcede6d53054f4a07c57b17b83f92fb9f0a87 | |
parent | add +0 to pc relative lea instructions, converted to [rip] on linux (diff) |
add substitutions of +0 to [rip]
-rw-r--r-- | astartup.sed | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/astartup.sed b/astartup.sed index da6a4d1..c855a6a 100644 --- a/astartup.sed +++ b/astartup.sed @@ -53,4 +53,5 @@ s/\[d5\]/[r13]/ s/([ ,])d3d([ ,+]|$)/\1r11d\2/ s/([ ,])d4d([ ,+$])/\1r12d\2/ s/([ ,])d2b([ ,+$])/\1r10b\2/ - +s/\+0$/[rip]/ +s/\+0,/[rip],/ |