diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2020-05-22 13:09:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-22 13:09:59 +0200 |
| commit | 8d26ba77b13fe86ef8be11bfb0410c0bfd4616ae (patch) | |
| tree | 397a7284cc5330db271191064c9d6a23c2f206a1 /miasm/arch/mips32/sem.py | |
| parent | 65ab7b8ce226c37be4e22190e16a86fa9bb9c37f (diff) | |
| parent | 31ccf59f9140ae62a568787a109bbeb57259acb6 (diff) | |
| download | miasm-8d26ba77b13fe86ef8be11bfb0410c0bfd4616ae.tar.gz miasm-8d26ba77b13fe86ef8be11bfb0410c0bfd4616ae.zip | |
Merge pull request #1232 from serpilliere/fix_tipo
Fix tipo
Diffstat (limited to '')
| -rw-r--r-- | miasm/arch/mips32/sem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/arch/mips32/sem.py b/miasm/arch/mips32/sem.py index 903be3be..5032432c 100644 --- a/miasm/arch/mips32/sem.py +++ b/miasm/arch/mips32/sem.py @@ -68,7 +68,7 @@ def lbu(arg1, arg2): @sbuild.parse def lh(arg1, arg2): - """A word is loaded into a register @arg1 from the + """A word is loaded into a register @arg1 from the specified address @arg2.""" arg1 = mem16[arg2.ptr].signExtend(32) |