initial commit

This commit is contained in:
2026-03-03 23:50:39 -06:00
commit fa9ff2c753
14 changed files with 441 additions and 0 deletions

10
common.h Normal file
View File

@@ -0,0 +1,10 @@
#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