You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These instructions handle conditional jumps based on the N (Negative) flag in the status register, which indicates whether the result of the last arithmetic or logic operation was negative.
Tasks:
Implement BRMI to branch when N = 1.
Implement BRPL to branch when N = 0.
Add corresponding unit tests verifying correct behavior for negative and positive values.
These instructions handle conditional jumps based on the N (Negative) flag in the status register, which indicates whether the result of the last arithmetic or logic operation was negative.
Tasks:
References: