9 lines
188 B
Python
9 lines
188 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility wrapper for the H8/536 emulator progress probe."""
|
|
|
|
from h8536.emulator.probe import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|