diff options
author | Ayke van Laethem <[email protected]> | 2018-09-23 20:50:44 +0200 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2018-09-23 20:50:44 +0200 |
commit | 3076ad470e564a5a9b351345fc83acf9834e19cd (patch) | |
tree | e45c2a51baff635423e6217ad8cec157aa190e21 /tools | |
parent | b09f7a5e6c108828165ed2c490d3ac2f4b268afb (diff) | |
download | tinygo-3076ad470e564a5a9b351345fc83acf9834e19cd.tar.gz tinygo-3076ad470e564a5a9b351345fc83acf9834e19cd.zip |
tools/gen-device-svd: fix script filename in output
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gen-device-svd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gen-device-svd.py b/tools/gen-device-svd.py index 1b3cc0045..fb8c077c1 100755 --- a/tools/gen-device-svd.py +++ b/tools/gen-device-svd.py @@ -205,7 +205,7 @@ def writeGo(outdir, device): pkgName = os.path.basename(outdir.rstrip('/')) out.write('''\ // Automatically generated file. DO NOT EDIT. -// Generated by gen-device.py from {file}, see {descriptorSource} +// Generated by gen-device-svd.py from {file}, see {descriptorSource} // +build {pkgName},{nameLower} @@ -305,7 +305,7 @@ def writeAsm(outdir, device): out = open(outdir + '/' + device.metadata['nameLower'] + '.s', 'w') out.write('''\ // Automatically generated file. DO NOT EDIT. -// Generated by gen-device.py from {file}, see {descriptorSource} +// Generated by gen-device-svd.py from {file}, see {descriptorSource} // {description} // |