Noice Tasm to Kick Assembler Converter
What
The Noice Turbo Assembler to Kick Assembler converter is a web based tool used for converting old c64 Turbo Assembler soucre code files to Kick Assembler format, probably imported with TMPView. Most stuff used on real c64 turbo assembler should work. Newer stuff like macros does not work for now.
Where
The Noice Turbo Assembler to Kick Assembler converter is available here.
Future
Feedback/requests is welcome.
Follow @SwfNoc on twitter for future updates.
Swoffa;
Any chance you could upgrade it?
Conditional assembly;
.if -> #IF
.ifeq -> #IF variable = 0
.else -> #else
.fi -> #endif
More complex
name .macro
lda #\1 ;first parameter
.endm
#name 23 ;call macro
is
.macro name(parameter1) {
lda #parameter1
}
name(23)
.comment -> ./*
.endc -> */
.byte, .word and all these need to be lower case
Thanks for feedback! I will do my best when I get a bit of time. 🙂