Skip to content

Commit

Permalink
Merge pull request #15 from SharonIV0x86/fix/bold-font-4-HEX
Browse files Browse the repository at this point in the history
fixed misplaced asterisk - 4 (HEX-DISPLAY)
  • Loading branch information
salmoneatenbybear authored Jan 23, 2025
2 parents 7a39d27 + 7968b60 commit 5b86edf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 5b86edf

Please sign in to comment.