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

Bugfix: cpu clock sync error #27

Merged
merged 4 commits into from
Dec 13, 2021

Commits on Dec 4, 2021

  1. Bugfix: cpu clock sync error

    This patch fixes an error in the `sync` flag of the cpu clocks.
    
    Previously, we would set the sync bit of a flag based on the presence of
    sync, rather than testing if the value was true.  This would cause
    potential hangs in any clock that set `sync`, including `.false.`.
    
    This patch correctly replaces the single `ibset` call with an if-block
    to either `ibset` or `ibclr`.
    marshallward committed Dec 4, 2021
    Configuration menu
    Copy the full SHA
    36d4f7f View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2021

  1. Configuration menu
    Copy the full SHA
    3ce6a31 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2021

  1. Configuration menu
    Copy the full SHA
    09bcea2 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2021

  1. Configuration menu
    Copy the full SHA
    e452a29 View commit details
    Browse the repository at this point in the history