sleiderr / fzkernel

Pure rust bootloader
GNU General Public License v3.0
4 stars 1 forks source link

fix(acpi): sdt_getter returns pointer to the SDT instead of a copy of it #46

Closed sleiderr closed 1 year ago

sleiderr commented 1 year ago

The macro sdt_getter now produces a load function that returns a pointer to the SDT, instead of copying it. This permits modification of the SDT, and an easier way to retrieve its memory address later on.

That should enables us to dynamically load the address of the MADT in #43.