diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2024-03-28 15:31:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-28 15:31:07 +0100 |
| commit | 1ba37c39b1fa70651a1c7748c5829656cd3e6dea (patch) | |
| tree | e74b76e29d6618228b67112543943215f0eb011d /miasm/arch/mep/regs.py | |
| parent | 319229f8675fb3d84655b1701a31eb9064560d3c (diff) | |
| parent | 46a201ecd64b478fc947d8b1b2e830b767bb66eb (diff) | |
| download | focaccia-miasm-1ba37c39b1fa70651a1c7748c5829656cd3e6dea.tar.gz focaccia-miasm-1ba37c39b1fa70651a1c7748c5829656cd3e6dea.zip | |
Merge pull request #1474 from DimitriPapadopoulos/codespell
Fix typos found by codespell
Diffstat (limited to 'miasm/arch/mep/regs.py')
| -rw-r--r-- | miasm/arch/mep/regs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/arch/mep/regs.py b/miasm/arch/mep/regs.py index b7fa2a78..be195b61 100644 --- a/miasm/arch/mep/regs.py +++ b/miasm/arch/mep/regs.py @@ -44,7 +44,7 @@ csr_names = ["PC", "LP", "SAR", "S3", "RPB", "RPE", "RPC", "HI", "LO", csr_exprs, csr_inits, csr_infos = gen_regs(csr_names, globals()) # Define aliases to control/special registers -PC = csr_exprs[0] # Program Conter. On MeP, it is the special register R0 +PC = csr_exprs[0] # Program Counter. On MeP, it is the special register R0 LP = csr_exprs[1] # Link Pointer. On MeP, it is the special register R1 SAR = csr_exprs[2] # Shift Amount Register. On MeP, it is the special register R2 RPB = csr_exprs[4] # Repeat Begin. On MeP, it is the special register R4 |