You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
263 B

#ifndef KERNEL_CPU_TYPES_H
#define KERNEL_CPU_TYPES_H
// Non-semantic types specific to 32-bit Intel x86
#include <stdint.h>
#define LOW16(address) (u16)((address) & 0xffff)
#define HIGH16(address) (u16)(((address) >> 16) & 0xffff)
#endif //KERNEL_CPU_TYPES_H