8bitlenser/lenser/plus4/convert/__init__.py
2026-07-03 19:35:35 -07:00

11 lines
535 B
Python

"""Commodore Plus/4 conversion dispatch.
The Plus/4 uses the same TED chip (7360/8360) and BASIC 3.5 as the C16 -- it just
has 64K RAM instead of 16K. The TED's bitmap hardware is identical (320x200 hires,
the 121-colour palette), so the image encoding, palette and .prg viewer are exactly
the same; we reuse the C16 implementation unchanged and only target a different MAME
machine (see platforms.run_emulator).
"""
from __future__ import annotations
from ...c16.convert import MODES, convert_image # noqa: F401 (re-export)