From 036ce7f4ec13fd2fdbaa2201b686ffbab7c0da9b Mon Sep 17 00:00:00 2001 From: Patrick Pedersen Date: Fri, 26 Jul 2024 21:11:54 +0200 Subject: [PATCH] v1.1.2 Release Signed-off-by: Patrick Pedersen --- pyproject.toml | 2 +- src/stm8dce/__main__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a89460a..9a61db8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "stm8dce" -version = "1.1.1" +version = "1.1.2" authors = [ { name="Patrick Pedersen", email="ctx.xda@gmail.com" }, ] diff --git a/src/stm8dce/__main__.py b/src/stm8dce/__main__.py index b04580c..c6c1113 100755 --- a/src/stm8dce/__main__.py +++ b/src/stm8dce/__main__.py @@ -209,7 +209,7 @@ def run( entry_function = entry_function[0] - # Keep main function and all of its traversed calls + # Keep entry function and all of its traversed functions debug.pdbg() debug.pdbg(f"Traversing entry function: {entry_label}") debug.pseperator() @@ -248,7 +248,7 @@ def run( else: raise ValueError(f"Error: Entry label not found: {entry_label}") - # Keep interrupt handlers and all of their traversed calls + # Keep interrupt handlers and all of their traversed functions # but exclude unused IRQ handlers if opted by the user interrupt_handlers = asm_analysis.interrupt_handlers(functions) for handler in interrupt_handlers: @@ -277,7 +277,7 @@ def run( functions, function_pointer ) - # Keep functions excluded by the user and all of their traversed calls + # Keep functions excluded by the user and all of their traversed functions if exclude_functions: for exclude_name in exclude_functions: filename, name = eval_flabel(exclude_name)