diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2021-08-25 01:11:41 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-25 01:11:41 -0400 |
| commit | 97e066f23f35b5bc65e31093fd074a6c1e61195b (patch) | |
| tree | 94ce723be846a43041a2bd228e3512e8f310b553 /tools/asm-differ/diff_settings.py | |
| parent | 5ece221fe24e9f3870de51b35d5cb69afcf787bd (diff) | |
Update asm-processor and diff.py (#278)
* fix asm differ branch
* git subrepo pull --force tools/asm-differ
subrepo:
subdir: "tools/asm-differ"
merged: "fd0984c97"
upstream:
origin: "https://github.com/simonlindholm/asm-differ.git"
branch: "main"
commit: "fd0984c97"
git-subrepo:
version: "0.4.3"
origin: "???"
commit: "???"
* delete asm-processor
* git subrepo clone git@github.com:simonlindholm/asm-processor.git tools/asm-processor
subrepo:
subdir: "tools/asm-processor"
merged: "755f734fb"
upstream:
origin: "git@github.com:simonlindholm/asm-processor.git"
branch: "main"
commit: "755f734fb"
git-subrepo:
version: "0.4.3"
origin: "???"
commit: "???"
* re-add build.py
* remove subrepo
* git subrepo pull --force tools/asm-differ
subrepo:
subdir: "tools/asm-differ"
merged: "1dfba80e1"
upstream:
origin: "https://github.com/simonlindholm/asm-differ.git"
branch: "main"
commit: "1dfba80e1"
git-subrepo:
version: "0.4.3"
origin: "???"
commit: "???"
Diffstat (limited to 'tools/asm-differ/diff_settings.py')
| -rw-r--r-- | tools/asm-differ/diff_settings.py | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/tools/asm-differ/diff_settings.py b/tools/asm-differ/diff_settings.py index b9d88fe6c..456ffdfdc 100644 --- a/tools/asm-differ/diff_settings.py +++ b/tools/asm-differ/diff_settings.py @@ -1,7 +1,10 @@ -#!/usr/bin/env python3 - def apply(config, args): - config['baseimg'] = 'target.bin' - config['myimg'] = 'source.bin' - config['mapfile'] = 'build.map' - config['source_directories'] = ['.'] + config["baseimg"] = "target.bin" + config["myimg"] = "source.bin" + config["mapfile"] = "build.map" + config["source_directories"] = ["."] + # config["arch"] = "mips" + # config["map_format"] = "gnu" # gnu or mw + # config["mw_build_dir"] = "build/" # only needed for mw map format + # config["makeflags"] = [] + # config["objdump_executable"] = "" |
