10 lines
190 B
C
10 lines
190 B
C
|
|
#ifndef BEAR_COMMON_H
|
||
|
|
#define BEAR_COMMON_H
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
typedef uint8_t reg8_val_t;
|
||
|
|
typedef uint16_t reg16_val_t;
|
||
|
|
|
||
|
|
constexpr uint16_t STACK_ADDR_TOP = 0x0200;
|
||
|
|
|
||
|
|
#endif //BEAR_COMMON_H
|