9 lines
281 B
Python
9 lines
281 B
Python
|
|
"""AWG_REG 寄存器表渲染器。"""
|
|||
|
|
from render_ids import _load_ids, render_awg_reg_table
|
|||
|
|
|
|||
|
|
|
|||
|
|
def render(filepath):
|
|||
|
|
"""返回 AWG_REG 寄存器汇总表 + 位域明细 HTML(不含标题和描述)。"""
|
|||
|
|
data = _load_ids(filepath)
|
|||
|
|
return render_awg_reg_table(data)
|