-
Notifications
You must be signed in to change notification settings - Fork 1
/
scratch_vhdl.code-workspace
57 lines (57 loc) · 1.49 KB
/
scratch_vhdl.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"folders": [
{
"path": "."
},
{
"path": "./scratch-vhdl-vscode",
"name": "vscode"
}
],
"settings": {
"todo-tree.tree.showCountsInTree": true,
"todo-tree.tree.showBadges": true,
"todo-tree.tree.disableCompactFolders": true,
"explorer.fileNesting.enabled": true,
"material-icon-theme.files.associations": {
"*.vhdl": "Verilog"
},
"scratch-vhdl-vscode.templates": {
"led4_button4": {
"entity": {
"clk": ["in", "std_logic"],
"reset": ["in", "std_logic"],
"incr": ["in", "std_logic"],
"buttons": ["in", "std_logic_vector(3 downto 0)"],
"leds": ["out", "std_logic_vector(3 downto 0)"]
},
"signals": {},
"aliases": {},
"name": "led4_button4",
"constants": {
"button_tab_c": ["natural", "1"]
},
"libraries": { "ieee": {} }
}
},
"markdownlint.config": {
"MD033": false,
"MD024": false
},
"scratch-vhdl-vscode.asm_compile_path": "./design/asm_compile.cmd",
"workbench.colorCustomizations": {
"statusBar.background": "#cba6f7",
"statusBar.foreground": "#181825",
"statusBarItem.hoverBackground": "#b077f3",
"statusBarItem.remoteBackground": "#cba6f7",
"statusBarItem.remoteForeground": "#181825"
},
"peacock.color": "#cba6f7"
},
"extensions": {
"recommendations": [
"JosephAbbey.scratch-vhdl-vscode",
"JosephAbbey.customasm"
]
}
}