Revision c32bcd017b202d418c9135e2df77be73a69044a0 authored by Ko- on 15 June 2020, 18:45:45 UTC, committed by Ko- on 15 June 2020, 18:45:45 UTC
This reverts commit b64e5f1073cc24097579417a91bcee3ee85eb260.
Those lines were not unused.
1 parent b64e5f1
Raw File
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import M4Settings
from mupq import mupq


if __name__ == "__main__":
    mupq.BuildAll(M4Settings()).test_all(sys.argv[1:])
back to top