aboutsummaryrefslogtreecommitdiff
path: root/src/riscv_opcodes/__main__.py
blob: 456cddd29ccaaa66f6fe9b33eefdb1d6d412aa03 (plain)
1
2
3
4
5
6
7
8
9
10
"""
This allows running as a module, i.e. `python3 -m riscv_opcodes` which
we wouldn't normally need, but the `coverage` tool doesn't work on
installed scripts - you can't do `coverage run riscv_opcodes` because it
looks for a Python file called `riscv_opcodes` in the current directory.
"""

from .parse import main

main()