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

Fixes in crt0_msxdos_advanced and printf.c #135

Merged
merged 2 commits into from
Nov 30, 2023

Commits on Nov 19, 2023

  1. Fix error code returned to the OS in crt0_msxdos_advanced.

    It was being taken from register L, but in newer SDCCs it's passed
    in register A instead.
    Konamiman committed Nov 19, 2023
    Configuration menu
    Copy the full SHA
    8a104a6 View commit details
    Browse the repository at this point in the history
  2. Fixes in long integer handling in printf.c

    - Doc comment fixed: now it correctly says that the modifier
      for integers is "u" (not "ud" or "ui") and for unsigned long
      is "lu" (not "ul")
    
    - Fixed the "l" modifier, it was skipping the next character
    Konamiman committed Nov 19, 2023
    Configuration menu
    Copy the full SHA
    b9a0176 View commit details
    Browse the repository at this point in the history