Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```