Compare commits
No commits in common. "e136bfef3390f074f576e189c96937a9843f8edf" and "14176984b8ec73a1db77fa2d380551f7a63c613f" have entirely different histories.
e136bfef33
...
14176984b8
2
pat80-emulator/.gitignore
vendored
2
pat80-emulator/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
build
|
||||
|
@ -1,6 +0,0 @@
|
||||
cmake_minimum_required(VERSION 3.5.0)
|
||||
project(pat80-emulator VERSION 0.1.0 LANGUAGES C)
|
||||
|
||||
find_package(Z80 REQUIRED Shared)
|
||||
add_executable(pat80-emulator main.c)
|
||||
|
@ -1,17 +0,0 @@
|
||||
{
|
||||
"version": 8,
|
||||
"configurePresets": [
|
||||
{
|
||||
"name": "gcc",
|
||||
"displayName": "GCC 14.2.1 x86_64-pc-linux-gnu",
|
||||
"description": "Using compilers: C = /usr/bin/gcc, CXX = /usr/bin/g++",
|
||||
"binaryDir": "${sourceDir}/out/build/${presetName}",
|
||||
"cacheVariables": {
|
||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
|
||||
"CMAKE_C_COMPILER": "/usr/bin/gcc",
|
||||
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
|
||||
"CMAKE_BUILD_TYPE": "Debug"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -1,15 +1,7 @@
|
||||
# Pat80 emulator
|
||||
# PAT80 Emulator
|
||||
This folder contains a submodule (you should fetch it if you need to run the os in an emulator).
|
||||
|
||||
## Setup
|
||||
|
||||
Install the required Z80 emulator by redcode following the instructions for your Linux distribution at https://github.com/redcode/Z80
|
||||
Make sure to install not only the `libz80` package, but also `libz80-dev`.
|
||||
|
||||
Create the build directory: `mkdir build`
|
||||
Create the makefile with cmake: `cd build && cmake ..`
|
||||
|
||||
## Build
|
||||
|
||||
Enter the `build` directory and run `make`
|
||||
Uses cburbridge's Z80 emulator written in python. It opens some windows showing the emulated computer's memory map, the cpu registers state and parallel terminal to interact with the os.
|
||||
|
||||
## Usage
|
||||
To run the os in the emulator, head to `pat80-computer/software/z80-assembly/os/Makefile` and run `make run` to build the rom from assembly and start the emulator.
|
||||
|
@ -1,5 +0,0 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int, char**){
|
||||
printf("Hello, from pat80-emulator!\n");
|
||||
}
|
1
pat80-emulator/z80-python-emulator
Submodule
1
pat80-emulator/z80-python-emulator
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 46d5391d5c890b2608389db5f2e8e470ef99f254
|
Loading…
x
Reference in New Issue
Block a user