Skip to content

Instantly share code, notes, and snippets.

@skyhisi
Created August 25, 2020 08:01
Show Gist options
  • Save skyhisi/9f5287115fa2b5eb40bcc7d89cc4b498 to your computer and use it in GitHub Desktop.
Save skyhisi/9f5287115fa2b5eb40bcc7d89cc4b498 to your computer and use it in GitHub Desktop.
Enable Alignment Checks on x86-64
void enable_ac(void)
{
__asm__("pushf\n"
"orl $0x40000, (%rsp)\n"
"popf");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment