-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to VSC extension and Kernel Generator examples
- Loading branch information
Showing
23 changed files
with
58 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,7 @@ data/ | |
**/__pycache__/ | ||
|
||
# Playground | ||
zz_playground/ | ||
zz_playground/ | ||
|
||
# vs code local config | ||
.vscode |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
CONTEXT BGV 16384 1 | ||
# inputs | ||
DATA a 2 | ||
DATA b 2 | ||
DATA c 2 | ||
DATA d 2 | ||
DATA e 2 | ||
DATA f 2 | ||
# temp variables | ||
DATA temp1 2 | ||
DATA temp2 2 | ||
DATA temp3 2 | ||
DATA temp4 2 | ||
# output | ||
DATA g 2 | ||
# Code | ||
ADD temp1 a b | ||
ADD temp2 c d | ||
ADD temp3 e f | ||
ADD temp4 temp1 temp2 | ||
ADD f temp3 temp4 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CONTEXT BGV 16384 1 1 | ||
DATA a 3 | ||
DATA b 2 | ||
RELIN b a |
11 changes: 0 additions & 11 deletions
11
kerngen/tutorials/SimpleExamples/example_multi-ADD_16K.ker
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# HERACLES Kernel Language extension for VS Code | ||
|
||
This is an experimental first attempt at creating a VS Code extension that | ||
understands the grammar of the HERACLES Kernel Language. | ||
|
||
<mark> | ||
<b>This is experimental code. Use it at your own risk.</b> | ||
</mark> | ||
|
||
## Installation | ||
|
||
A pre-packaged version of this extension '.vsix' file is avialble in the | ||
current folder. | ||
You can manually install using the Install from VSIX command in the Extensions | ||
view command dropdown. For an alternative way to install a local VS Code | ||
extensions, please check the | ||
[VS Code documentaiton](https://code.visualstudio.com/docs/editor/extension-marketplace#_install-from-a-vsix). | ||
|
||
## Features | ||
|
||
The only available feature is the toggle comments on a line | ||
|
||
## Known Issues | ||
|
||
The actual grammar is not yet working. | ||
|
||
## Release Notes | ||
|
||
None at the moment. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.