diff --git a/README.md b/README.md index e1eb17d..1016366 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ The implementation consists of such modules: ### RAM module: + ```verilog module ram(); @@ -38,8 +39,9 @@ Module represents memory which is used as RAM. It has 4096 32-bit addressable ce --- -###Cache module: +### Cache module: + ```verilog module cache(); @@ -63,6 +65,7 @@ initial endmodule ``` + So the cache contains more than just copies of the data in @@ -72,8 +75,9 @@ verify its validity. --- -###Cache and RAM module: +### Cache and RAM module: + ```verilog module cache_and_ram( input [31:0] address,