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

https://github.com/jeromelesaux/z80format

z80 assembly formatter
https://github.com/jeromelesaux/z80format

assembly rasm z80

Last synced: 6 months ago
JSON representation

z80 assembly formatter

Awesome Lists containing this project

README

          

# z80format

Z80Format is a simple assembly code source formatter.
It may convert the assembly code source to a ready [Rasm](https://github.com/EdouardBERGE/rasm) code source.
It's free to use.

## Installation
You need a Golang environnement set up and compile it via the makefile command :
```bash
make
```

Golang specific :
```bash
go install github.com/jeromelesaux/z80format/cli/z80formatter@latest
```

## Usage

You can use it like this
```bash
z80formatter -format myfile.asm > myformattedfile.asm
```

or

```bash
z80formatter < myfile.asm > myformatterfile.asm
```