解析RSDT header的sign信息

This commit is contained in:
fslongjin
2022-03-13 14:59:31 +08:00
parent a879bada0a
commit 9dd1c65cae
3 changed files with 60 additions and 16 deletions

View File

@ -49,6 +49,9 @@ typedef long long int ll;
#define max(x, y) ((x > y) ? (x) : (y))
#define min(x, y) ((x < y) ? (x) : (y))
// 遮罩高32bit
#define MASK_HIGH_32bit(x) (x & (0x00000000ffffffffUL))
// 四舍五入成整数
ul round(double x)
{