Code formatter for CC65 assembly
Project description
nice65
Code formatter for CC65 assembly (WIP).
Requirements:
- Python 3.x
- Lark
Features:
- Makes ugly code less ugly
- Fixes indentation and letter cases (mnemonics, registers)
- Understands weird labels, such as colon-less (C64 style) and unnamed (
:
,:+++
) - Support for basic macros
- Skip files with
; nice65: ignore
comment - Tested with C64 Kernal/Basic and my 6502-based SBC ROM code
Not implemented yet:
- Complex macros
- Proper formatting of arithmetic expressions
- Better indentation of comments based on deduced context
Installation
pip install nice65
Example usage
# Reformat and print to STDOUT
nice65 samples/example.s
# Modify file in-place
nice65 samples/example.s -m
# Write result to another file
nice65 samples/example.s -o samples/clean.s
# or
nice65 samples/example.s > samples/clean.s
# Recursively reformat all files in directory with extension ".s"
nice65 ./samples/ -r
# Recursively reformat all files in directory with extension ".asm"
nice65 ./samples/ -r -p '*.asm'
Before:
.macro foobar aa, bb, cc
lda aa
ldx bb
ldy cc
.endmacro
.data
foo:.byte 1
.code
; Fill zeropage with zeroes
fill:
PHa
Phx
start lDa #0
LdX #0
@again: sta $00 ,x ;Yeah, we can use stz, but I just need some code to test nice65!
inx
bne fill ; Repeat
; Do unnecessary throwaway stuff to test expressions
lda #<($42 + %10101010- (foo*2))
cmp foo+2
jmp :+
: lda $1234
@ridiculously_long_label_just_for_the_sake_of_it:PLX
pla
end:rts
After:
.macro foobar aa, bb, cc
LDA aa
LDX bb
LDY cc
.endmacro
.data
foo: .byte 1
.code
; Fill zeropage with zeroes
fill:
PHA
PHX
start: LDA #0
LDX #0
@again:
STA $00, X ; Yeah, we can use stz, but I just need some code to test nice65!
INX
BNE fill ; Repeat
; Do unnecessary throwaway stuff to test expressions
LDA #<($42+%10101010-(foo*2))
CMP foo+2
JMP :+
: LDA $1234
@ridiculously_long_label_just_for_the_sake_of_it:
PLX
PLA
end: RTS
Using with Vim
:nnoremap <M-r> :%! nice65 -<CR>
Using with NeoVim
If you want to be fancy, here's an example on how to have nice65 configured as code formatter for NeoVim with null-ls:
-
Make sure you have the following neovim plugins installed:
maxbane/vim-asm_ca65
- sets filetype for CA65 buffersjose-elias-alvarez/null-ls.nvim
- allows to run custom scripts as language servers
-
Add configuration:
local null_ls = require("null-ls") null_ls.setup({ on_attach = on_attach, -- Remove this line if you don't use on_attach }) null_ls.register({ method = null_ls.methods.FORMATTING, filetypes = { 'asm_ca65' }, generator = null_ls.formatter({ command = 'nice65', args = {'-'}, to_stdin = true, from_stdout = true, }), })
-
Trigger the formatting:
:lua vim.lsp.buf.format()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nice65-0.0.4.tar.gz
(6.3 kB
view details)
Built Distribution
File details
Details for the file nice65-0.0.4.tar.gz
.
File metadata
- Download URL: nice65-0.0.4.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c785258fa8e590df43a7f877fea5ad6a030ecea8998a81e98a3af03c1caded4 |
|
MD5 | de627da3d3d92d9fb8947f0521d30929 |
|
BLAKE2b-256 | 4fc4c8595165e9509f24c2822385dc2fe2e2a418709234af3360b6dc709e4be2 |
File details
Details for the file nice65-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: nice65-0.0.4-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72e81fd439f5f3943215f8ae9667e0373b3d03198ced16f11040ea9c915a3c79 |
|
MD5 | f958cb54eda1e464725bb17a5033c118 |
|
BLAKE2b-256 | 1f14828b6d13573faf6b88f56182de7124372fc031c2fa7bb0f0c7114c862029 |