/SSPARCSS-vscode

VS Code workspace config for SSPARCSS Simulator

MIT LicenseMIT

To setup

  1. Install AutoHotkey v2 Beta
  2. Open this folder as a workspace in VS Code
  3. Install all recommended extensions
  4. Open the command palette (Ctrl+Shift+P)
  5. Search for Tasks: Run Task and select it

For ARM (cont.)

  1. Run the task Configure single line comment symbol for ARM language extension
  2. In the language-configuration.json file, set the lineComment value to ;

For RISC-V (cont.)

  1. Run the task Configure single line comment symbol for RISC-V language extension (json)
  2. In the language-configuration.json file, set the lineComment value to ;
  3. Run the task Configure single line comment symbol for RISC-V language extension (tmLanguage)
  4. In the riscv.tmLanguage file, look for single command and then change as follows:
      <!-- single command -->
      <dict>
        <key>begin</key>
-        <string>\/\/</string>
+        <string>;</string>
        <key>end</key>
        <string>\n</string>
        <key>name</key>
        <string>comment.line.double-slash</string>
      </dict>