Skip to content

Commit

Permalink
Merge branch 'feature-add_address_formula' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbrant3 committed Jan 10, 2025
2 parents b38d5af + b31a04c commit fd28df4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion templates/tag_summary_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

{% macro registerBody(orig_subtag, subtag) %}
<div class="sub-tag">
<h6>{{ get_full_name(orig_subtag) }}</h6>
<h6>{{ get_full_name(orig_subtag) }}</h6>
- {% if subtag.resolved|length == 1 %}Address:{% else %}Starting Address:{% endif %} {{subtag.resolved[0].address}}
<div class="main-content">
<div class="description">
Expand Down Expand Up @@ -99,6 +99,7 @@ <h6>{{ get_full_name(orig_subtag) }}</h6>
<tr class="title">
<td>Expanded Names</td>
<td>Addresses</td>
<td>Formula</td>
</tr>
</thead>
<tbody>
Expand All @@ -123,6 +124,12 @@ <h6>{{ get_full_name(orig_subtag) }}</h6>
<a href="#" class="collapsed-content-expander">Show All</a>
{% endif %}
</td>
<td>
<span>
address = {{ subtag.resolved[0].address }} + ({{ subtag.resolved[1].address - subtag.resolved[0].address }} * <i>#</i>)
</span>
<!-- Can we determine address size based on the register type, yes we can. Data type determines address? -->
</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit fd28df4

Please sign in to comment.