nstool/lib/libfnd/include/fnd/BitMath.h

15 lines
313 B
C
Raw Normal View History

2018-03-17 11:59:53 +00:00
/*
BitMath.h
(c) 2018 Jakcron
This is a 0x40 byte header to prepend to raw EXEFS .code binaries that provide enough data to be equivalent to an ELF.
*/
#pragma once
// to be deprecated
#define BIT(n) (1ULL << (n))
// Bit math macros
#define _BIT(n) BIT(n)
2018-03-25 11:08:34 +00:00
#define _HAS_BIT(val, bit) (((val) & _BIT(bit)) != 0)