mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-27 01:48:17 +00:00
11 lines
176 B
C
11 lines
176 B
C
#ifndef __TREZORHAL_SECBOOL_H__
|
|
#define __TREZORHAL_SECBOOL_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef uint32_t secbool;
|
|
#define sectrue 0xAAAAAAAA
|
|
#define secfalse 0x00000000
|
|
|
|
#endif
|