Compare commits

...

2 Commits

Author SHA1 Message Date
1d7bc19965 style: Updates VS Code editor color scheme
- Updates the VS Code settings to customize the color scheme for
  the activity bar and activity bar badge.
- Enhances the visual appearance and user experience of the editor.
2025-07-16 11:04:58 +02:00
175bf4882a refactor: improves project configuration
- Removes unnecessary fields and configures the project.
- Streamlines tool options for clarity.
- Simplifies dependencies.
2025-07-16 11:04:44 +02:00
2 changed files with 19 additions and 13 deletions

11
.vscode/settings.json vendored
View File

@@ -2,5 +2,14 @@
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.extraPaths": [
"src"
]
],
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#8dc4ff",
"activityBar.background": "#8dc4ff",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#ff007b",
"activityBarBadge.foreground": "#e7e7e7"
},
"peacock.color": "#5aaaff"
}

View File

@@ -1,27 +1,23 @@
name: VGA
topmodule: VGA_Test
name:
topmodule:
target_device: xc3s1200e-4-fg320
xilinx_path: /opt/Xilinx/14.7/ISE_DS/ISE
constraints:
sources:
vhdl:
- path: src/*.vhd
library: work
verilog: []
dependencies:
- git: "https://git.0xmax42.io/maxp/Asynchronous-FIFO-AXI-Handshake.git"
rev: "hdlbuild"
testbenches:
vhdl:
- path: tests/*.vhd
library: work
verilog: []
constraints: src/VGA_test.ucf
dependencies:
# - git: "https://git.0xmax42.io/maxp/Asynchronous-FIFO-AXI-Handshake.git"
# rev: "hdlbuild"
build:
build_dir: working
@@ -39,7 +35,8 @@ tool_options:
map:
- "-detail"
- "-timing"
- "-ol high"
- "-ol"
- "high"
par: []