├── .gitignore ├── DATASHEET.md ├── LICENSE.md ├── README.md ├── _config.yml ├── _layouts └── default.html ├── assets ├── css │ └── style.scss └── img │ ├── AHB-Lite-Memory-PortDiag.png │ ├── AHB-Lite-Memory-SysDiag.png │ ├── RoaLogicLogo.png │ └── Tagged_Logo_50.png ├── docs ├── ahb3lite_memory.txss ├── ahb3lite_memory_datasheet.pdf ├── ahb3lite_memory_datasheet.tex ├── ahb3lite_memory_markdown.tex ├── assets │ ├── graffle │ │ └── AHB-Lite Memory.graffle │ └── img │ │ ├── AHB-Lite-Memory-PortDiag-eps-converted-to.pdf │ │ ├── AHB-Lite-Memory-PortDiag.eps │ │ ├── AHB-Lite-Memory-SysDiag-eps-converted-to.pdf │ │ ├── AHB-Lite-Memory-SysDiag.eps │ │ ├── Tagged_Logo-eps-converted-to.pdf │ │ └── Tagged_Logo.eps ├── markdown │ ├── compile.sh │ ├── frontmatter.md │ └── lpp.pl ├── pkg │ └── roalogictitle.sty └── tex │ ├── configuration.tex │ ├── history.tex │ ├── interfaces.tex │ ├── introduction.tex │ ├── preamble.tex │ ├── references.tex │ ├── resources.tex │ ├── setup.tex │ ├── specification.tex │ └── technology.tex └── rtl ├── filelist.f └── verilog ├── LICENSE.txt └── ahb3lite_sram1rw.sv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/.gitignore -------------------------------------------------------------------------------- /DATASHEET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/DATASHEET.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /assets/img/AHB-Lite-Memory-PortDiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/assets/img/AHB-Lite-Memory-PortDiag.png -------------------------------------------------------------------------------- /assets/img/AHB-Lite-Memory-SysDiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/assets/img/AHB-Lite-Memory-SysDiag.png -------------------------------------------------------------------------------- /assets/img/RoaLogicLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/assets/img/RoaLogicLogo.png -------------------------------------------------------------------------------- /assets/img/Tagged_Logo_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/assets/img/Tagged_Logo_50.png -------------------------------------------------------------------------------- /docs/ahb3lite_memory.txss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/ahb3lite_memory.txss -------------------------------------------------------------------------------- /docs/ahb3lite_memory_datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/ahb3lite_memory_datasheet.pdf -------------------------------------------------------------------------------- /docs/ahb3lite_memory_datasheet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/ahb3lite_memory_datasheet.tex -------------------------------------------------------------------------------- /docs/ahb3lite_memory_markdown.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/ahb3lite_memory_markdown.tex -------------------------------------------------------------------------------- /docs/assets/graffle/AHB-Lite Memory.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/assets/graffle/AHB-Lite Memory.graffle -------------------------------------------------------------------------------- /docs/assets/img/AHB-Lite-Memory-PortDiag-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/assets/img/AHB-Lite-Memory-PortDiag-eps-converted-to.pdf -------------------------------------------------------------------------------- /docs/assets/img/AHB-Lite-Memory-PortDiag.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/assets/img/AHB-Lite-Memory-PortDiag.eps -------------------------------------------------------------------------------- /docs/assets/img/AHB-Lite-Memory-SysDiag-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/assets/img/AHB-Lite-Memory-SysDiag-eps-converted-to.pdf -------------------------------------------------------------------------------- /docs/assets/img/AHB-Lite-Memory-SysDiag.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/assets/img/AHB-Lite-Memory-SysDiag.eps -------------------------------------------------------------------------------- /docs/assets/img/Tagged_Logo-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/assets/img/Tagged_Logo-eps-converted-to.pdf -------------------------------------------------------------------------------- /docs/assets/img/Tagged_Logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/assets/img/Tagged_Logo.eps -------------------------------------------------------------------------------- /docs/markdown/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/markdown/compile.sh -------------------------------------------------------------------------------- /docs/markdown/frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/markdown/frontmatter.md -------------------------------------------------------------------------------- /docs/markdown/lpp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/markdown/lpp.pl -------------------------------------------------------------------------------- /docs/pkg/roalogictitle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/pkg/roalogictitle.sty -------------------------------------------------------------------------------- /docs/tex/configuration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/configuration.tex -------------------------------------------------------------------------------- /docs/tex/history.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/history.tex -------------------------------------------------------------------------------- /docs/tex/interfaces.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/interfaces.tex -------------------------------------------------------------------------------- /docs/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/introduction.tex -------------------------------------------------------------------------------- /docs/tex/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/preamble.tex -------------------------------------------------------------------------------- /docs/tex/references.tex: -------------------------------------------------------------------------------- 1 | \chapter{References} -------------------------------------------------------------------------------- /docs/tex/resources.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/resources.tex -------------------------------------------------------------------------------- /docs/tex/setup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/setup.tex -------------------------------------------------------------------------------- /docs/tex/specification.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/specification.tex -------------------------------------------------------------------------------- /docs/tex/technology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/docs/tex/technology.tex -------------------------------------------------------------------------------- /rtl/filelist.f: -------------------------------------------------------------------------------- 1 | verilog/ahb3lite_sram1rw.sv 2 | -------------------------------------------------------------------------------- /rtl/verilog/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/rtl/verilog/LICENSE.txt -------------------------------------------------------------------------------- /rtl/verilog/ahb3lite_sram1rw.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaLogic/ahb3lite_memory/HEAD/rtl/verilog/ahb3lite_sram1rw.sv --------------------------------------------------------------------------------