10 lines
173 B
Python
10 lines
173 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility wrapper for the H8/536 ROM decompiler CLI."""
|
|
|
|
from h8536.cli import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|
|
|