com.github.c64lib.retro-assembler
Owner: Maciej Malecki
Embeds various 6502 assemblers and provides basic functionality to have builds for your beloved C64
https://c64lib.github.io/gradle-retro-assembler-plugin/
Sources: https://github.com/c64lib/gradle-retro-assembler-plugin
Version 1.7.2
1.7.2
Created 10 June 2023.
Embeds various 6502 assemblers and provides basic functionality to have builds for your beloved C64
Using the plugins DSL:
plugins {
id("com.github.c64lib.retro-assembler") version "1.7.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.c64lib.retro-assembler:gradle:1.7.2")
}
}
apply(plugin = "com.github.c64lib.retro-assembler")
Using the plugins DSL:
plugins {
id "com.github.c64lib.retro-assembler" version "1.7.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.c64lib.retro-assembler:gradle:1.7.2"
}
}
apply plugin: "com.github.c64lib.retro-assembler"