mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-01 20:57:03 +03:00
12 lines
158 B
C
12 lines
158 B
C
#ifndef __MM__MTRR_H__
|
|
#define __MM__MTRR_H__
|
|
|
|
#if defined (__x86_64__) || defined (__i386__)
|
|
|
|
void mtrr_save(void);
|
|
void mtrr_restore(void);
|
|
|
|
#endif
|
|
|
|
#endif
|