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.
|
#pragma once
|
|
|
|
#if defined(AARCH64) || defined(aarch64)
|
|
#include "aarch64/context.h"
|
|
#elif defined(X86_64) || defined(x86_64)
|
|
#include "x86_64/context.h"
|
|
#else
|
|
#warning "Architecture not set. Using x86_64"
|
|
#define X86_64
|
|
#include "x86_64/context.h"
|
|
#endif
|