{% extends "base.html" %} {% set active = 'registers' %} {% block title %}寄存器 · DocGraph{% endblock %} {% block content %}

寄存器 ({{ nodes|length }})

{% if q %}清除{% endif %}
{% if not nodes %}

没有寄存器节点。启用 LLM 模式后跑 build 试试,参见 插件页

{% else %} {% for doc_id, group in nodes | groupby('doc_id') %}

{{ doc_id | doc_name }} ({{ group|length }})

{% for n in group %} {% endfor %}
nameaddress / offsetwidthaccess resetpagesource
{{ n.name }} {{ n.attrs.get('address') or n.attrs.get('offset') or '—' }} {{ n.attrs.get('width') or '?' }} {{ n.attrs.get('access') or '—' }} {{ n.attrs.get('reset_value') or '—' }} {{ n.location.page or '—' }} {{ n.attrs.get('source','heuristic') }}
{% endfor %} {% endif %} {% endblock %}