Changeset 4f6368c in mainline for tools/ew.py


Ignore:
Timestamp:
2023-12-05T12:21:34Z (5 months ago)
Author:
GitHub <noreply@…>
Branches:
master, topic/simplify-dev-export
Children:
d53a5ab0
Parents:
10fc93c (diff), 56a3c29e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Vojtech Horky <vojtech.horky@…> (2023-12-05 12:21:34)
git-committer:
GitHub <noreply@…> (2023-12-05 12:21:34)
Message:

Update MSIM config file (see #228)

Switch to dr4kcpu device needed on MSIM >2.0.0.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/ew.py

    r10fc93c r4f6368c  
    7979        for termemu in emus:
    8080                try:
    81                         subprocess.check_output('which ' + termemu, shell = True)
     81                        subprocess.check_output('which ' + termemu, shell = True, stderr = subprocess.STDOUT)
    8282                        return termemu
    8383                except:
     
    331331def msim_run(platform, machine, processor):
    332332        hdisk_mk()
    333         run_in_console('msim -c ' + TOOLS_DIR + '/conf/msim.conf', 'HelenOS/mips32 on msim')
     333        run_in_console('msim -n -c ' + TOOLS_DIR + '/conf/msim.conf', 'HelenOS/mips32 on msim')
    334334
    335335def spike_run(platform, machine, processor):
Note: See TracChangeset for help on using the changeset viewer.