phaze101 / vscode-kickass-studio

Extension for visual studio code for developing kickass assm c64 programs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VS Code Kick Assembler Studio

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.

commodore 64 logo

Features

Contextual help

test

On the fly error evaluation

onflyerrors

Search for references and go to definition

Follow reference

Automatic tasks generation

taskgeneration

Vice Debugger

vice debugger

Watch formated labels and memory addresses

watches 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"

Credits

Santiago Montero

https://github.com/sanmont

https://twitter.com/sanmonterodev

Special thanks to Captain JiNX for his great vscode-kickass extension which code was partially used to develop this extension. (Used under MIT license)

Check out his awesome extension!

https://github.com/CaptainJiNX/vscode-kickass-c64

About

Extension for visual studio code for developing kickass assm c64 programs

License:MIT License


Languages

Language:TypeScript 100.0%