You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
graph TD
A[IDLE] -->|start=1| B[WORK: 初始化ctr=0, part_res=0]
B --> C{ctr==32?}
C -->|否| D[计算部分积: part_sum = a & b[ctr]]
D --> E[移位: shifted_part_sum = part_sum << ctr]
E --> F[累加: part_res += shifted_part_sum]
F --> G[ctr++]
G --> C
C -->|是| H[END_STATE: 输出y=part_res, busy=0]
H --> A
Activity