├── .github ├── dependabot.yml └── workflows │ ├── build-pdf.yml │ └── pre-commit.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.adoc ├── dependencies ├── Gemfile ├── README.md ├── apt_packages.txt └── package.json ├── minutes ├── 20200428-Fast-Interrupts-minutes.txt ├── 20200512-Fast-Interrupts-minutes.txt ├── 20200526-Fast-Interrupts-minutes.pdf ├── 20200609-Fast-Interrupts-minutes.pdf ├── 20200623-Fast-Interrupts-minutes.pdf ├── 20200707-Fast-Interrupts-minutes.pdf ├── 20200721-Fast-Interrupts-minutes.pdf ├── 20200811-Fast-Interrupts-minutes.pdf ├── 20200825-Fast-Interrupts-minutes.pdf ├── 20200908-Fast-Interrupts-minutes.pdf ├── 20200922-Fast-Interrupts-minutes.pdf ├── 20201006-Fast-Interrupts-minutes.pdf ├── 20201020-Fast-Interrupts-minutes.pdf ├── 20201110-Fast-Interrupts-minutes.pdf ├── 20201124-Fast-Interrupts-minutes.pdf ├── 20210105-Fast-Interrupts-minutes.pdf ├── 20210119-Fast-Interrupts-minutes.pdf ├── 20210202-Fast-Interrupts-minutes.pdf ├── 20210216-Fast-Interrupts-minutes.pdf ├── 20210302-Fast-Interrupts-minutes.pdf ├── 20210316-Fast-Interrupts-minutes.pdf ├── 20210330-Fast-Interrupts-minutes.pdf ├── 20210413-Fast-Interrupts-minutes.pdf ├── 20210427-Fast-Interrupts-minutes.pdf ├── 20210511-Fast-Interrupts-minutes.pdf ├── 20210525-Fast-Interrupts-minutes.pdf ├── 20210608-Fast-Interrupts-minutes.pdf ├── 20210622-Fast-Interrupts-minutes.pdf ├── 20210706-Fast-Interrupts-minutes.pdf ├── 20210720-Fast-Interrupts-minutes.pdf ├── 20210803-Fast-Interrupts-minutes.pdf ├── 20210817-Fast-Interrupts-minutes.pdf ├── 20210831-Fast-Interrupts-minutes.pdf ├── 20210914-Fast-Interrupts-minutes.pdf ├── 20210928-Fast-Interrupts-minutes.pdf ├── 20211012-Fast-Interrupts-minutes.pdf ├── 20211028-Fast-Interrupts-minutes.pdf ├── 20211109-Fast-Interrupts-minutes.pdf ├── 20211121-Fast-Interrupts-minutes.pdf ├── 20211221-Fast-Interrupts-minutes.pdf ├── 20220104-Fast-Interrupts-minutes.pdf ├── 20220118-Fast-Interrupts-minutes.pdf ├── 20220201-Fast-Interrupts-minutes.pdf ├── 20220215-Fast-Interrupts-minutes.pdf ├── 20220301-Fast-Interrupts-minutes.pdf ├── 20220315-Fast-Interrupts-minutes.pdf ├── 20220329-Fast-Interrupts-minutes.pdf ├── 20220412-Fast-Interrupts-minutes.pdf ├── 20220426-Fast-Interrupts-minutes.pdf ├── 20220510-Fast-Interrupts-minutes.pdf ├── 20220524-Fast-Interrupts-minutes.pdf ├── 20220607-Fast-Interrupts-minutes.pdf ├── 20220621-Fast-Interrupts-minutes.pdf ├── 20220705-Fast-Interrupts-minutes.pdf ├── 20220719-Fast-Interrupts-minutes.pdf ├── 20220802-Fast-Interrupts-minutes.pdf ├── 20220816-Fast-Interrupts-minutes.pdf ├── 20220830-Fast-Interrupts-minutes.pdf ├── 20220913-Fast-Interrupts-minutes.pdf ├── 20220927-Fast-Interrupts-minutes.pdf ├── 20221011-Fast-Interrupts-minutes.pdf ├── 20221025-Fast-Interrupts-minutes.pdf ├── 20221108-Fast-Interrupts-minutes.pdf ├── 20230117-Fast-Interrupts-minutes.pdf ├── 20230131-Fast-Interrupts-minutes.pdf ├── 20230214-Fast-Interrupts-minutes.pdf ├── 20230228-Fast-Interrupts-minutes.pdf ├── 20230314-Fast-Interrupts-minutes.pdf ├── 20230328-Fast-Interrupts-minutes.pdf ├── 20230411-Fast-Interrupts-minutes.pdf ├── 20230425-Fast-Interrupts-minutes.pdf ├── 20230509-Fast-Interrupts-minutes.pdf ├── 20230523-Fast-Interrupts-minutes.pdf ├── 20230606-Fast-Interrupts-minutes.pdf ├── 20230620-Fast-Interrupts-minutes.pdf ├── 20230718-Fast-Interrupts-minutes.pdf ├── 20230801-Fast-Interrupts-minutes.pdf ├── 20230815-Fast-Interrupts-minutes.pdf ├── 20230829-Fast-Interrupts-minutes.pdf ├── 20230926-Fast-Interrupts-minutes.pdf ├── 20231010-Fast-Interrupts-minutes.pdf ├── 20231205-Fast-Interrupts-minutes.pdf ├── 20231219-Fast-Interrupts-minutes.pdf ├── 20240205-Fast-Interrupts-minutes.pdf ├── 20240304-Fast-Interrupts-minutes.pdf └── 20240401-Fast-Interrupts-minutes.pdf ├── src ├── aclic.adoc ├── bibliography.adoc ├── chapter2.adoc ├── contributors.adoc ├── example.bib ├── images │ └── wavedrom │ │ └── clicintattri.edn ├── index.adoc └── intro.adoc └── test-plan-clic.adoc /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/.github/workflows/build-pdf.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | /images/* 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/README.adoc -------------------------------------------------------------------------------- /dependencies/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/dependencies/Gemfile -------------------------------------------------------------------------------- /dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/dependencies/README.md -------------------------------------------------------------------------------- /dependencies/apt_packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/dependencies/apt_packages.txt -------------------------------------------------------------------------------- /dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/dependencies/package.json -------------------------------------------------------------------------------- /minutes/20200428-Fast-Interrupts-minutes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200428-Fast-Interrupts-minutes.txt -------------------------------------------------------------------------------- /minutes/20200512-Fast-Interrupts-minutes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200512-Fast-Interrupts-minutes.txt -------------------------------------------------------------------------------- /minutes/20200526-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200526-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20200609-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200609-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20200623-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200623-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20200707-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200707-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20200721-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200721-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20200811-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200811-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20200825-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200825-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20200908-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200908-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20200922-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20200922-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20201006-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20201006-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20201020-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20201020-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20201110-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20201110-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20201124-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20201124-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210105-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210105-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210119-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210119-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210202-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210202-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210216-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210216-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210302-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210302-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210316-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210316-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210330-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210330-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210413-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210413-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210427-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210427-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210511-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210511-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210525-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210525-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210608-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210608-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210622-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210622-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210706-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210706-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210720-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210720-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210803-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210803-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210817-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210817-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210831-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210831-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210914-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210914-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20210928-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20210928-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20211012-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20211012-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20211028-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20211028-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20211109-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20211109-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20211121-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20211121-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20211221-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20211221-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220104-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220104-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220118-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220118-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220201-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220201-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220215-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220215-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220301-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220301-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220315-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220315-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220329-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220329-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220412-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220412-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220426-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220426-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220510-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220510-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220524-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220524-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220607-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220607-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220621-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220621-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220705-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220705-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220719-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220719-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220802-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220802-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220816-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220816-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220830-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220830-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220913-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220913-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20220927-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20220927-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20221011-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20221011-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20221025-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20221025-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20221108-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20221108-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230117-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230117-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230131-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230131-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230214-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230214-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230228-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230228-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230314-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230314-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230328-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230328-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230411-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230411-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230425-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230425-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230509-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230509-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230523-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230523-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230606-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230606-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230620-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230620-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230718-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230718-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230801-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230801-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230815-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230815-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230829-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230829-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20230926-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20230926-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20231010-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20231010-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20231205-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20231205-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20231219-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20231219-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20240205-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20240205-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20240304-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20240304-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /minutes/20240401-Fast-Interrupts-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/minutes/20240401-Fast-Interrupts-minutes.pdf -------------------------------------------------------------------------------- /src/aclic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/src/aclic.adoc -------------------------------------------------------------------------------- /src/bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/src/bibliography.adoc -------------------------------------------------------------------------------- /src/chapter2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/src/chapter2.adoc -------------------------------------------------------------------------------- /src/contributors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/src/contributors.adoc -------------------------------------------------------------------------------- /src/example.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/src/example.bib -------------------------------------------------------------------------------- /src/images/wavedrom/clicintattri.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/src/images/wavedrom/clicintattri.edn -------------------------------------------------------------------------------- /src/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/src/index.adoc -------------------------------------------------------------------------------- /src/intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/src/intro.adoc -------------------------------------------------------------------------------- /test-plan-clic.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv/riscv-fast-interrupt/HEAD/test-plan-clic.adoc --------------------------------------------------------------------------------