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

Swap manpage descriptions of HIGH(n) and LOW(n) #1545

Merged
merged 1 commit into from
Oct 16, 2024

Conversation

quinnyo
Copy link
Contributor

@quinnyo quinnyo commented Oct 16, 2024

This corrects the descriptions of the HIGH(n) and LOW(n) functions in rgbasm.5. Each described the other.

Just to be sure, I did compile the following (in)sanity check without issue:

def n equ $ABCD
assert HIGH(n) == (n & $FF00) >> 8
assert LOW(n) == n & $FF

Copy link
Member

@ISSOtm ISSOtm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol nice catch, I wonder how this has been missed for so long :P

I'll merge this immediately, since this is reusing existing markup.

@ISSOtm ISSOtm merged commit dd6c741 into gbdev:master Oct 16, 2024
22 checks passed
@ISSOtm
Copy link
Member

ISSOtm commented Oct 16, 2024

Thank you!

@Rangi42 Rangi42 added bug Unexpected behavior / crashes; to be fixed ASAP! docs This affects the documentation (web-specific issues go to rgbds-www) rgbasm This affects RGBASM labels Oct 16, 2024
@Rangi42 Rangi42 added this to the v0.9.0 milestone Oct 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Unexpected behavior / crashes; to be fixed ASAP! docs This affects the documentation (web-specific issues go to rgbds-www) rgbasm This affects RGBASM
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants