diff options
| author | serpilliere <devnull@localhost> | 2012-06-24 18:07:52 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-06-24 18:07:52 +0200 |
| commit | df5becdc7f4479670b4285c613e3159e4e43f734 (patch) | |
| tree | c3a0335431cd75dad04c3c6f2730f55a9f1baca8 | |
| parent | a5f2c46631a3a1bfd142666b24842685d51f8d7e (diff) | |
| download | miasm-df5becdc7f4479670b4285c613e3159e4e43f734.tar.gz miasm-df5becdc7f4479670b4285c613e3159e4e43f734.zip | |
arm_arch: fix int
| -rw-r--r-- | miasm/arch/arm_arch.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/miasm/arch/arm_arch.py b/miasm/arch/arm_arch.py index 46da2c78..1bc1fc53 100644 --- a/miasm/arch/arm_arch.py +++ b/miasm/arch/arm_arch.py @@ -23,13 +23,9 @@ from miasm.arch.ia32_reg import x86_afs from miasm.core.bin_stream import bin_stream import re -tab_int_size = {int8:8, - uint8:8, - int16:16, +tab_int_size = {uint8:8, uint16:16, - int32:32, uint32:32, - int64:64, uint64:64 } |