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

Switch legacy HFS+ driver to modern codebase #13

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

Commits on May 7, 2024

  1. Switch legacy HFS+ driver to modern codebase

    This is done by downgrading rdrand requirement to rdtsc.
    rdrand rax+ driver to modern codebase
    
    This is done by downgrading rdrand requirement to rdtsc.
    
    ```
    rdrand rax
    xor    ah, ah
    ```
    
    is replaced with
    
    ```
    push   rdx
    rdtsc
    shl    rdx, 20h
    or     rax, rdx
    pop    rdx
    ```
    vit9696 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    17f1ed8 View commit details
    Browse the repository at this point in the history