Code your way into the past with full support for kick assembler in visual studio code!
Support for debugging using vice, hover text showing contextual help, on the fly error evaluation and automatic tasks generation.
Features
Contextual help
On the fly error evaluation
Search for references and go to definition
Automatic tasks generation
Vice Debugger
Watch formated labels and memory addresses
You can watch the value of a particular memory address or label. The format can be determinate in this way
(*|#)(type:)labelOrAddress([length])
Examples:
message <- Will show the value of the label 'message' in hexadecimal , as hexadecimal is the default value
c:message <- Will show the value of the label 'message' in character, just one character
c:message[11] <- Will show 11 consecutive values in charactes or a string of length 11 if you will starting from the lable 'message'
#message <- Will show the memory address of the label 'message'
*c:pointerToMessage[11] <- Will use the memory address (2 bytes) in the label pointerToMessage (in litte endian, lower byte first, hight byte second, watch that value and format it as a string of length 11
**c:pointerToPointer[11] <- will apply the same indirection twice, so if pointerToPointer contains the memory address of pointerToMessage, and pointerToMessage contains the memory addres of message, this will show the content of message formated in a string of length 11
Types
h: hexadecimal, the default type. Is not necessary to specify it
d: decimal
b: binary
c: character
l: boolean, will show False if the value of the content is 0, True otherwise
Configuration options
kickass-studio.kickAssJar: "Full path to KickAss.jar"
kickass-studio.javaBin: "Full path to java binary"
kickass-studio.viceBin: "Full path to VICE binary"
kickass-studio.outputDir: "The default output directory for the compiled program"
Special thanks to Captain JiNX for his great vscode-kickass extension which code was partially used to develop this extension.
(Used under MIT license)