yasnakateb / SdramController

๐Ÿ›  A SDRAM controller in Verilog HDL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Synchronous dynamic random-access memory (SDRAM) controller

SDRAM is dynamic random access memory (DRAM) with a synchronous interface. It means that SDRAM uses a clock while DRAM does not. The interface has the system bus carrying data between the CPU and the memory controller hub. The memory controller will accept memory requests from the CPU, analyze the requests and dispatch them to the SDRAM in an efficient manner. This SDRAM Controller is simple and only one bank is active at a time.

View of SDRAM controller

Building on macOS

  1. Icarus-Verilog can be installed via Homebrew : $ brew install icarus-verilog

  2. Download Scansion from here.

  3. Clone the repository.

  4. Run $ make and type MIPS code to see it in binary form in rams_init_file.hex file.

  5. $ make simulate will:

  • compile design+TB
  • simulate the verilog design
  1. $ make display will:
  • display waveforms.

Links

  1. Design and Verification of SDRAM Controller Based on FPGA
  2. FPGA VHDL SDRAM Controller

About

๐Ÿ›  A SDRAM controller in Verilog HDL


Languages

Language:Verilog 92.5%Language:Makefile 7.5%