Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed misplaced asterisk - 4 (HEX-DISPLAY) #15

Merged
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/chapter4/3output.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ The live circuit embedded below illustrates how an array of pixels may be progra

## HexDisplay

The **HexDisplay** is more simple to use than the** SevenSegDisplay** and **SixteenSegDisplay **circuit elements. Since it takes a 4-bit input and can display integers 1 through 9 and the letters A through F, there is less room for customization.
The **HexDisplay** is more simple to use than the **SevenSegDisplay** and **SixteenSegDisplay** circuit elements. Since it takes a 4-bit input and can display integers 1 through 9 and the letters A through F, there is less room for customization.

The input bits do not control the individual segments ( as it is not possible to control six segments with only four bits). The hex display simply recognizes the integer/letter that a given input corresponds to and displays the character. The display character thus does not need to be programmed.

Expand Down
4 changes: 2 additions & 2 deletions docs/chapter4/6sequentialelements.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ You can verify the behavior of the **Clock** circuit element in the live circuit

## ROM

As the name suggests, the **ROM **( read-only memory) circuit element stores read only data for computers and other electronic devices. ROM is mostly used for firmware updates. A simple example of ROM is the cartridge used with video game consoles, which allows one system to run multiple games. Another example of ROM is EEPROM, which is a programmable ROM used for the computer BIOS.
As the name suggests, the **ROM** (read-only memory) circuit element stores read only data for computers and other electronic devices. ROM is mostly used for firmware updates. A simple example of ROM is the cartridge used with video game consoles, which allows one system to run multiple games. Another example of ROM is EEPROM, which is a programmable ROM used for the computer BIOS.

The **ROM** circuit element includes three pins. As Figure 4.10 elucidates, it accepts a 4-bit address input (**A**) and the corresponding value stored in the particular address is returned as a 8-bit output (**D**) (initial address always starts from 0). The Enable (**En**) pin enables the ROM.

Expand Down Expand Up @@ -533,7 +533,7 @@ Alternatively, the contents of the RAM can be dumped to the console by transitio
</em>
</div>

You can verify the behavior of the **RAM **circuit element in the live circuit embedded below:
You can verify the behavior of the **RAM** circuit element in the live circuit embedded below:

<iframe
width="600px"
Expand Down