Ignore:
Timestamp:
Aug 14, 2017, 12:32:08 PM (7 years ago)
Author:
max@…
Message:

Switch the VM space, and explicitly disable the FPU.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/x86_64/core/hal_special.c

    r336 r368  
    8787void hal_fpu_enable()
    8888{
    89         x86_panic((char *)__func__);
     89        /* FPU not implemented yet */
     90        return;
    9091        clts();
    9192}
     
    9394void hal_fpu_disable()
    9495{
    95         x86_panic((char *)__func__);
     96        /* FPU not implemented yet */
     97        return;
    9698        stts();
    9799}
Note: See TracChangeset for help on using the changeset viewer.