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
- Host: GitHub
- URL: https://github.com/jeromelesaux/z80format
- Owner: jeromelesaux
- License: gpl-3.0
- Created: 2022-10-25T21:36:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-17T21:34:34.000Z (over 3 years ago)
- Last Synced: 2025-01-21T20:33:09.065Z (over 1 year ago)
- Topics: assembly, rasm, z80
- Language: Go
- Homepage:
- Size: 57.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```