2024-11-24 11:46:21 +01:00
|
|
|
# LS7-Emulator
|
|
|
|
|
2025-01-07 14:01:52 +01:00
|
|
|
Emulator for the LS7 Computer written in C
|
|
|
|
|
|
|
|
# ToDo
|
|
|
|
|
|
|
|
- Adjust cpu.c for 65c02 Instructions
|
|
|
|
- video.c 16 color support
|
|
|
|
- video.c accent color support
|
|
|
|
- cpu snapshot load/save
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
|
|
|
|
Start the Program with `ls7emulator [OPTIONS]... [FILE]`.
|
|
|
|
A file has to be specified and **must** be exactly 16k in size.
|
|
|
|
Preferably a 65c02 program.
|
|
|
|
|
|
|
|
# OPTIONS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Hotkeys
|
|
|
|
|
|
|
|
# Building
|
|
|
|
|
|
|
|
The Program is so small, that I won't distribute a binary package.
|
|
|
|
The `Makefile` provides the build utilities. Simply build it in a Unix based terminal with
|
|
|
|
`make` and to install it in /usr/bin `make install` as root
|
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
|
|
|
|
- gcc
|
|
|
|
- sdl2
|