diff options
| author | serpilliere <devnull@localhost> | 2012-06-25 10:58:55 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-06-25 10:58:55 +0200 |
| commit | dde5d0e9323997f4b987785109568369e68bce25 (patch) | |
| tree | ac0cfd4a303f09eaba75cfbb4c18797a9267deae | |
| parent | 5ac1e4cc76efb626f99993eeb657ce69c563b431 (diff) | |
| parent | df5becdc7f4479670b4285c613e3159e4e43f734 (diff) | |
| download | miasm-dde5d0e9323997f4b987785109568369e68bce25.tar.gz miasm-dde5d0e9323997f4b987785109568369e68bce25.zip | |
merge
| -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 } |