diff options
| author | serpilliere <devnull@localhost> | 2012-10-30 10:19:38 +0100 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-10-30 10:19:38 +0100 |
| commit | 0abd2da60058918f93ca1e08b9716cf3005aab1e (patch) | |
| tree | f35af9d5ecf10e50f79af0148bfb880109b8920f | |
| parent | 9950cd7849e53591ce5693f473edb3ec923345c1 (diff) | |
| download | miasm-0abd2da60058918f93ca1e08b9716cf3005aab1e.tar.gz miasm-0abd2da60058918f93ca1e08b9716cf3005aab1e.zip | |
ia32_arch: remove fds in asm parse using segment selector
Diffstat (limited to '')
| -rw-r--r-- | miasm/arch/ia32_arch.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miasm/arch/ia32_arch.py b/miasm/arch/ia32_arch.py index 41577bcc..6b47bd26 100644 --- a/miasm/arch/ia32_arch.py +++ b/miasm/arch/ia32_arch.py @@ -1800,8 +1800,7 @@ class x86_mn: # XXX todo hack: if only one arg, no prefix if len(args) == 1: continue - print args_eval[-1] - fds + #print args_eval[-1] prefix.append(prefix_seg[args_eval[-1][x86_afs.segm]]) del args_eval[-1][x86_afs.segm] #XXX test if symbol in arg and replace with imm... for pre asm |