From d9c0d1d8a7360eade995066e4a97150e5a513d21 Mon Sep 17 00:00:00 2001 From: 0xMax42 Date: Wed, 23 Apr 2025 13:44:09 +0200 Subject: [PATCH] Initial commit --- .devcontainer/devcontainer.json | 25 +++++++++++++++++++++++++ .gitignore | 2 ++ .gitmodules | 3 +++ LICENSE | 18 ++++++++++++++++++ README.md | 2 ++ build | 1 + 6 files changed, 51 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 LICENSE create mode 100644 README.md create mode 160000 build diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..a84eb92 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,25 @@ +{ + "name": "Xilinx ISE 14.7", + "image": "xilinx-ise:14.7", + "runArgs": [ + "--privileged", + "--cap-add=SYS_ADMIN", + "--shm-size=2g" + ], + "customizations": { + "vscode": { + "extensions": [ + "p2l2.vhdl-by-hgb", + "eamodio.gitlens" + ], + "settings": { + "terminal.integrated.defaultProfile.linux": "bash" + } + } + }, + "remoteUser": "xilinx", + "workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/${localWorkspaceFolderBasename},type=bind", + "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", + "features": {}, + "forwardPorts": [10000] +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2baa0a9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.locale/ +.history/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e3dddbe --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "build"] + path = build + url = https://git.0xmax42.io/maxp/Xilinx-ISE-Build.git diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..dbb30cd --- /dev/null +++ b/LICENSE @@ -0,0 +1,18 @@ +MIT License + +Copyright (c) 2025 maxp + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO +EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..3f9e585 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# FPGA-Devcontainer-Xilinx + diff --git a/build b/build new file mode 160000 index 0000000..54949f4 --- /dev/null +++ b/build @@ -0,0 +1 @@ +Subproject commit 54949f43c0a900256c15d5d964c6b1da95d27473