FPGA 中 与 移位运算符详解
Error parsing MDX
[next-mdx-remote-client] error compiling MDX:
Expected a closing tag for `<br>` (10:61-10:65) before the end of `tableData`
8 | | 运算符 | 名称 | 填充规则 | 适用数据类型 | 数学等效 |
9 | |--------|------------------|------------------------------|--------------------|------------------------|
> 10 | | `>>` | 逻辑右移 | 高位一律补 **0** | 无符号数(推荐)<br>有符号数(**禁用**) | 无符号 ÷ 2ⁿ |
| ^
11 | | `>>>` | 算术右移 | 高位补 **符号位**(0 或 1) | **仅限有符号数** | 有符号 ÷ 2ⁿ(保留符号)|
12 |
More information: https://mdxjs.com/docs/troubleshooting-mdx
🧑🔧 See how to debug and solve most common MDX errors