├── .github ├── dependabot.yml └── workflows │ ├── build-pdf.yml │ └── pre-commit.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── dependencies ├── Gemfile ├── README.md ├── apt_packages.txt └── package.json ├── readme.adoc └── src ├── images ├── riscv-server-platform.png ├── riscv-server-platform.svg └── riscv-server-rc.svg ├── riscv-server-soc-ts.adoc ├── riscv-server-soc.adoc ├── server_soc.bib ├── server_soc_bibliography.adoc ├── server_soc_contributors.adoc ├── server_soc_index.adoc ├── server_soc_intro.adoc ├── server_soc_requirements.adoc ├── server_soc_tests.adoc └── server_soc_ts_intro.adoc /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/.github/workflows/build-pdf.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/Makefile -------------------------------------------------------------------------------- /dependencies/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/dependencies/Gemfile -------------------------------------------------------------------------------- /dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/dependencies/README.md -------------------------------------------------------------------------------- /dependencies/apt_packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/dependencies/apt_packages.txt -------------------------------------------------------------------------------- /dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/dependencies/package.json -------------------------------------------------------------------------------- /readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/readme.adoc -------------------------------------------------------------------------------- /src/images/riscv-server-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/images/riscv-server-platform.png -------------------------------------------------------------------------------- /src/images/riscv-server-platform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/images/riscv-server-platform.svg -------------------------------------------------------------------------------- /src/images/riscv-server-rc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/images/riscv-server-rc.svg -------------------------------------------------------------------------------- /src/riscv-server-soc-ts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/riscv-server-soc-ts.adoc -------------------------------------------------------------------------------- /src/riscv-server-soc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/riscv-server-soc.adoc -------------------------------------------------------------------------------- /src/server_soc.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/server_soc.bib -------------------------------------------------------------------------------- /src/server_soc_bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/server_soc_bibliography.adoc -------------------------------------------------------------------------------- /src/server_soc_contributors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/server_soc_contributors.adoc -------------------------------------------------------------------------------- /src/server_soc_index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/server_soc_index.adoc -------------------------------------------------------------------------------- /src/server_soc_intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/server_soc_intro.adoc -------------------------------------------------------------------------------- /src/server_soc_requirements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/server_soc_requirements.adoc -------------------------------------------------------------------------------- /src/server_soc_tests.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/server_soc_tests.adoc -------------------------------------------------------------------------------- /src/server_soc_ts_intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/server-soc/HEAD/src/server_soc_ts_intro.adoc --------------------------------------------------------------------------------