Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/snektron/glycon
Z80 retro computer
https://github.com/snektron/glycon
adruino embedded retro z80
Last synced: about 2 months ago
JSON representation
Z80 retro computer
- Host: GitHub
- URL: https://github.com/snektron/glycon
- Owner: Snektron
- Created: 2021-07-26T15:34:14.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-03T13:02:44.000Z (2 months ago)
- Last Synced: 2024-11-03T14:18:02.233Z (2 months ago)
- Topics: adruino, embedded, retro, z80
- Language: C
- Homepage:
- Size: 31.1 MB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
nin# Glycon
## Dependencies
* meson
* ninja or samurai
* avr-binutils
* avr-gcc
* avr-libc## Compiling
### Coprocessor
```
$ mkdir -p build/glyco
$ cd build/glyco
$ meson ../.. --cross-file ../../cross/avr-atmega2560-cross.ini
$ ninja
```To use the provided `flash` target to flash the coprocessor, set the coprocessor port the arduino is connected with by passing `-Dport=/dev/` to meson (usually /dev/ttyUSB0) and add yourself to to appropriate groups (typically `dialout` or `uucp`).
### Debugger
```
$ mkdir -p build/glydb
$ cd build/glydb
$ meson ../..
$ ninja
```