Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The implementation consists of such modules:

### RAM module:
<spoiler title="Code">

```verilog
module ram();

Expand All @@ -38,8 +39,9 @@ Module represents memory which is used as RAM. It has 4096 32-bit addressable ce
<img src="https://habrastorage.org/webt/03/an/bx/03anbxhid6b_h5kyzrz5ia6dzzc.png" />
---

###Cache module:
### Cache module:
<spoiler title="Code">

```verilog
module cache();

Expand All @@ -63,6 +65,7 @@ initial

endmodule
```

</spoiler>
<spoiler title="Description">
So the cache contains more than just copies of the data in
Expand All @@ -72,8 +75,9 @@ verify its validity.
<img src="https://habrastorage.org/webt/oy/xg/gw/oyxggwb5ikbgmkyn3mycpj1ft-y.png" />
---

###Cache and RAM module:
### Cache and RAM module:
<spoiler title="Code">

```verilog
module cache_and_ram(
input [31:0] address,
Expand Down