File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,13 +89,13 @@ the `CPU` object.
89
89
`ram_read()` should accept the address to read and return the value stored
90
90
there.
91
91
92
- `raw_write ()` should accept a value to write, and the address to write it to.
92
+ `ram_write ()` should accept a value to write, and the address to write it to.
93
93
94
94
> Inside the CPU , there are two internal registers used for memory operations:
95
95
> the _Memory Address Register_ (MAR ) and the _Memory Data Register_ (MDR ). The
96
96
> MAR contains the address that is being read or written to. The MDR contains
97
97
> the data that was read or the data to write. You don' t need to add the MAR or
98
- > MDR to your `CPU ` class , but they would make handy paramter names for
98
+ > MDR to your `CPU ` class , but they would make handy parameter names for
99
99
> `ram_read()` and `ram_write()` , if you wanted.
100
100
101
101
We' ll make use of these helper function later.
You can’t perform that action at this time.
0 commit comments