* CMake build infrastructure The squashed commit that builds and packages releases for the SIMH simulator suite with CMake, version 3.14 or newer. See README-CMake.md for documentation.
9 lines
138 B
Python
9 lines
138 B
Python
import re
|
|
|
|
|
|
def emit_debug(dval, level, msg):
|
|
if dval >= level:
|
|
print(msg)
|
|
|
|
def do_debug(dval, level, act):
|
|
pass
|