trezor-core/embed/trezorhal/secbool.h

11 lines
178 B
C
Raw Normal View History

#ifndef __TREZORHAL_SECBOOL_H__
#define __TREZORHAL_SECBOOL_H__
#include <stdint.h>
typedef uint32_t secbool;
2017-10-30 10:31:31 -07:00
#define sectrue 0xAAAAAAAAU
#define secfalse 0x00000000U
#endif