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 0.1.0
0.1.0
Created 06 June 2019.
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 "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.c64lib:gradle-retro-assembler-plugin:0.1.0")
}
}
apply(plugin = "com.github.c64lib.retro-assembler")
Using the plugins DSL:
plugins {
id "com.github.c64lib.retro-assembler" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.c64lib:gradle-retro-assembler-plugin:0.1.0"
}
}
apply plugin: "com.github.c64lib.retro-assembler"