- written by Christian Vogelgsang [email protected]
- under the GNU Public License V2
machine68k
is a Python package that offers a system binding for
the Musashi Motorola 68000 CPU emulator with memory binding and
support for ALine opcode exception traps.
The package is currently used by the amitools project and
supplies the CPU emulation for vamos
.
- Python >=
3.8
- pip3
- cython: (version >= 3.0.0) required to rebuild the native module
pip3 install machine68k
Note:
- on Linux/macOS may use
sudo
to install for all users - requires a host C compiler to compile the extension.
- the version may be a bit outdated. If you need recent changes use the current version.
Ensure you have Cython installed:
pip3 install cython
Then install machine68k
directly from the git repository:
pip3 install -U git+https://github.com/cnvogelg/machine68k.git
Or if you have a local clone of the repository:
pip3 install .
Note:
- This will install the latest version found in the github repository.
- You find the latest features but it may also be unstable from time to time.
- Repeat this command to update to the latest version.
- Follow this route if you want to hack around with the codebase
- Clone the Git repo: machine68k@git
- Ensure you have Cython installed:
pip3 install cython
- Enter the directory of the cloned repo and install via pip:
pip3 install -U -e .
This install machine68k
in your current Python environment but takes the
source files still from this repository. So you can change the code there
and directly test the machine.