diff options
| author | Camille Mougey <commial@gmail.com> | 2018-08-30 08:04:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-30 08:04:28 +0200 |
| commit | 53faba1609e80ed11edc7e504dffe59a21dc1d44 (patch) | |
| tree | 5c667472f97cb6d8e87396e7b97a673d9b000a66 /miasm2/arch/mips32/regs.py | |
| parent | a64951d7213f03b08af7e0717b88ca6006c5060f (diff) | |
| parent | caec47dc1871782ca445ea34229cd2a5ee600a7f (diff) | |
| download | miasm-53faba1609e80ed11edc7e504dffe59a21dc1d44.tar.gz miasm-53faba1609e80ed11edc7e504dffe59a21dc1d44.zip | |
Merge pull request #827 from serpilliere/fix_mips
Fix mips
Diffstat (limited to 'miasm2/arch/mips32/regs.py')
| -rw-r--r-- | miasm2/arch/mips32/regs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/mips32/regs.py b/miasm2/arch/mips32/regs.py index 7ff949f2..ddaaff79 100644 --- a/miasm2/arch/mips32/regs.py +++ b/miasm2/arch/mips32/regs.py @@ -24,6 +24,7 @@ regs32_str = ["ZERO", 'AT', 'V0', 'V1'] +\ ['GP', 'SP', 'FP', 'RA'] regs32_expr = [ExprId(x, 32) for x in regs32_str] +ZERO = regs32_expr[0] regs_flt_str = ['F%d'%i for i in xrange(0x20)] |