[arch][m68k] Merge in Motorola 68k port

This commit is contained in:
Travis Geiselbrecht
2021-11-08 23:24:15 -08:00
26 changed files with 1320 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ __BEGIN_CDECLS
#define clz(x) __builtin_clz(x)
#define ctz(x) __builtin_ctz(x)
#define ffs(x) __builtin_ffs(x)
#define BIT(x, bit) ((x) & (1UL << (bit)))
#define BIT_SHIFT(x, bit) (((x) >> (bit)) & 1)