aboutsummaryrefslogtreecommitdiff
path: root/tools/Internals/tools/renesas_asmsh.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Internals/tools/renesas_asmsh.py')
-rwxr-xr-xtools/Internals/tools/renesas_asmsh.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/Internals/tools/renesas_asmsh.py b/tools/Internals/tools/renesas_asmsh.py
index ae39561..bbe59a5 100755
--- a/tools/Internals/tools/renesas_asmsh.py
+++ b/tools/Internals/tools/renesas_asmsh.py
@@ -10,6 +10,8 @@ import os, tempfile
from subprocess import call
from .utils import *
+__all__ = ["Renesas_Asmsh"]
+
#*****************************************************************************#
# Discovery, configuration #
#*****************************************************************************#
@@ -72,7 +74,9 @@ def __asm(self, obj, src, incdirs):
os.rename(tmpobj, obj)
return ret
-__all__ = ["Renesas_Asmsh"]
+#*****************************************************************************#
+# Main utility descriptor #
+#*****************************************************************************#
Renesas_Asmsh = {
'getparams': __getparams,
'asm': __asm