From 0911568293968626737281193706755773769970 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Wed, 1 May 2024 01:24:28 -0400 Subject: Add address display mode options --- python/architecture.py | 1 + python/examples/export_svg.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'python') diff --git a/python/architecture.py b/python/architecture.py index dcc01e4f..ce69af86 100644 --- a/python/architecture.py +++ b/python/architecture.py @@ -2808,6 +2808,7 @@ class InstructionTextToken: TextToken Used for anything not of another type. CommentToken Comments TypeNameToken **Not emitted by architectures** + AddressSeparatorToken **Not emitted by architectures** ========================== ============================================ """ diff --git a/python/examples/export_svg.py b/python/examples/export_svg.py index b2965c93..e9ce9299 100755 --- a/python/examples/export_svg.py +++ b/python/examples/export_svg.py @@ -258,7 +258,7 @@ def render_svg(function, offset, mode, form, showOpcodes, showAddresses, orignam .BaseStructureNameToken, .BaseStructureSeparatorToken {{ fill: {rgbStr('BaseStructureNameColor')}; }} - .TextToken, .BeginMemoryOperandToken, .EndMemoryOperandToken {{ + .TextToken, .BeginMemoryOperandToken, .EndMemoryOperandToken, .AddressSeparatorToken {{ fill: {rgbStr('TextToken')}; }} -- cgit v1.3.1