Crates.io | c64-assembler |
lib.rs | c64-assembler |
version | |
source | src |
created_at | 2025-01-29 16:59:11.821775+00 |
updated_at | 2025-03-26 20:24:56.842436+00 |
description | Commodore 64 assembler, outputs directly to .PRG or Dasm source code |
homepage | |
repository | https://github.com/jeroenbakker-atmind/c64-assembler |
max_upload_size | |
id | 1534985 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A modern assembler for the Commodore 64 that integrates seamlessly with Rust and Cargo workflows. This tool allows you to assemble 6502 assembly code into PRG, making it easy to build and test Commodore 64 programs directly from your Rust projects.
[!NOTE] This project is in development. You're free to use/adapt/distribute it (as long as you respect the license).
You can add c64-assembler
as a rust dependency into your cargo.toml:
cargo add c64-assembler
To assemble C64 assembly.
use c64_assembler::builder::ApplicationBuilder;
use c64_assembler::builder::module::ModuleBuilder;
use c64_assembler::builder::InstructionBuilder;
let application = ApplicationBuilder::default()
.name("Set black border")
.include_vic2_defines()
.module(
ModuleBuilder::default()
.name("main")
.instructions(
InstructionBuilder::default()
.add_basic_header()
.label("main_entry_point")
.lda_imm(0x00)
.comment("Load black color")
.sta_addr("VIC2_BORDER_COLOR")
.rts()
.build(),
)
.build(),
)
.build().unwrap();
After this the application can be generated to bytes (Vec<u8>
) using the ProgramGenerator
use c64_assembler::generator::{Generator, ProgramGenerator, print_hexdump};
let bytes = ProgramGenerator::default().generate(application).unwrap();
print_hexdump(&bytes);
0000: 00 08 00 0C 08 0A 00 9E 20 32 30 36 32 00 00 00
0010: A9 00 8D 20 D0 60
Or generate to dasm source using the DasmGenerator
use c64_assembler::generator::{Generator, DasmGenerator};
let source = DasmGenerator::default().generate(application).unwrap();
println!("{}", source);
; --- Application: SET BLACK BORDER ---
; NOTE: This file is generated, do not modify
processor 6502
VIC2_BORDER_COLOR = $D020
org $0800
; --- Module begin: MAIN ---
byte $00, $0C, $08 ; New basic line
; 10 SYS 2062
byte $0A, $00, $9E, $20, $32, $30, $36, $32
byte $00, $00, $00 ; End basic program
main_entry_point:
lda #$00 ; Load black color
sta VIC2_BORDER_COLOR
rts
The c64-assembly-macro
crate introduces several macros to reduce the boiler plating.
use c64_assembler_macro::application;
let application = application!(
name="Set black border"
include_vic2_defines
module!(
name="main"
instructions!(
include_basic_header
main_entry_point:
"Load black color into accumulator"
lda #$00
sta VIC2_BORDER_COLOR
rts
)
)
).unwrap();
We welcome contributions! To get started:
Fork the repository.
Clone your fork:
git clone https://github.com/jeroenbakker-atmind/c64-assembler
Make your changes and submit a pull request.
TIP: Create an issue first, for discussing of getting guidance.
This project is licensed under the GPL-3.0-or-later.
Special thanks to the C64 and Rust communities for inspiration and support.