Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix definition of PRIMASK #6599

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

danlehmann
Copy link

PRIMASK is handled incorrectly in Sleigh. From the armv6m manual:

  • Executing the instruction CPSID i sets PRIMASK.PM to 1.
  • Executing the instruction CPSIE i sets PRIMASK.PM to 0.

Sleigh currently has this backwards.

This patch swaps the meaning of 0 and 1, bringing the definition in line with the reference documentation.

PRIMASK is handled incorrectly in Sleigh. From the armv6m manual:
* Executing the instruction CPSID i sets PRIMASK.PM to 1.
* Executing the instruction CPSIE i sets PRIMASK.PM to 0.

So interrupts are enabled if the lowest bit is 0.

This patch swaps the meaning of 0 and 1, bringing the definition in line with
the reference documentation.
@GhidorahRex GhidorahRex self-assigned this May 30, 2024
@GhidorahRex GhidorahRex added Type: Bug Something isn't working Feature: Processor/ARM Status: Triage Information is being gathered labels May 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature: Processor/ARM Status: Triage Information is being gathered Type: Bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants