summaryrefslogtreecommitdiff
path: root/instrmem/v0.1/parameters.h
diff options
context:
space:
mode:
authordianshi <dianshi@main.lv>2022-01-19 22:00:08 +0000
committerdianshi <dianshi@main.lv>2022-01-19 22:00:08 +0000
commitf3a300ce5927cad9ecf02821b3be007f9d2af22b (patch)
tree43bdcb0683971341f79f072504a40eea9b50368f /instrmem/v0.1/parameters.h
parentdeebf92127386873cb34d46f414d31c7a69adcfe (diff)
downloadcpu8_v-f3a300ce5927cad9ecf02821b3be007f9d2af22b.tar.gz
cpu8_v-f3a300ce5927cad9ecf02821b3be007f9d2af22b.zip
Add instruction memory
Diffstat (limited to 'instrmem/v0.1/parameters.h')
-rw-r--r--instrmem/v0.1/parameters.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/instrmem/v0.1/parameters.h b/instrmem/v0.1/parameters.h
new file mode 100644
index 0000000..4935dfc
--- /dev/null
+++ b/instrmem/v0.1/parameters.h
@@ -0,0 +1,13 @@
+`ifndef PARAMETERS_H_
+`define PARAMETERS_H_
+// fpga4student.com
+// FPGA projects, VHDL projects, Verilog projects
+// Verilog code for RISC Processor
+// Parameter file
+`define col 16 // 16 bits instruction memory, data memory
+`define row_i 15 // instruction memory, instructions number, this number can be changed. Adding more instructions to verify your design is a good idea.
+`define row_d 8 // The number of data in data memory. We only use 8 data. Do not change this number. You can change the value of each data inside test.data file. Total number is fixed at 8.
+`define filename "./test/50001111_50001212.o"
+`define simulation_time #160
+
+`endif \ No newline at end of file