Fix type sizes

This commit is contained in:
Alex
2023-05-13 07:40:07 +03:00
parent 06e34ab57f
commit 816e5461c9
85 changed files with 655 additions and 422 deletions

View File

@ -174,6 +174,7 @@ extern "C"
: "memory");
}
#if defined(a64)
static inline void mmoutq(void *Address, uint64_t Value)
{
asmv("mov %1, %0"
@ -181,6 +182,7 @@ extern "C"
: "r"(Value)
: "memory");
}
#endif
static inline uint8_t mminb(void *Address)
{
@ -212,6 +214,7 @@ extern "C"
return Result;
}
#if defined(a64)
static inline uint64_t mminq(void *Address)
{
uint64_t Result;
@ -221,6 +224,7 @@ extern "C"
: "memory");
return Result;
}
#endif
#ifdef __cplusplus
}
#endif