落地 isa 静态库骨架与 Types 头。

先挂 Encode.cpp 和定宽类型别名,规范仍以 Doc 为准。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-18 17:48:09 +08:00
co-authored by Cursor
parent 6db7304254
commit ff244888c3
4 changed files with 184 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
/**
* @file Types.h
* @brief 类型定义
* @author
* @date 2026-08-18
*/
#pragma once
#include <cstdint>
namespace isa {
namespace types {
using BOOL = uint8_t;
using INT = int16_t;
using TIME = uint64_t;
}
}