Skip to content

Commit e717f00

Browse files
committed
Revert "Update README.md"
This reverts commit 57993eb.
1 parent 57993eb commit e717f00

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

docs/README.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
# Wokwi cd54hct30 Chip
1+
# Wokwi sn74ahct1g32 Chip
22

3-
This is a custom chip for [Wokwi](https://wokwi.com/). It implements the cd54hct30 IC.
3+
This is a custom chip for [Wokwi](https://wokwi.com/). It implements the sn74ahct1g32 IC.
44

55
## Description
66

7-
The cd54hct30 contain single 2-input Positive-OR gates. Each gate performs the Boolean function
8-
of Y = NOT(A . B . C . D . E . F . G . H) in positive logic.
7+
The sn74ahct1g32 contain single 2-input Positive-OR gates. Each gate performs the Boolean function
8+
of Y = (A + B) in positive logic.
99

1010
## Truth Table
11+
<<<<<<< HEAD
1112
| INPUTS | OUTPUT |
1213
| ----------------------------------------------------------------------------- |---------|
13-
| INPUT A | INPUT B | INPUT C | INPUT D | INPUT E | INPUT F | INPUT G | INPUT H |---------|
14+
| INPUT A | INPUT B | INPUT C | INPUT D | INPUT E | INPUT F | INPUT G | INPUT H | |
1415
|---------|---------|---------|---------|---------|---------|---------|---------|---------|
1516
| L | X | X | X | X | X | X | X | H |
1617
| X | L | X | X | X | X | X | X | H |
@@ -21,20 +22,21 @@ of Y = NOT(A . B . C . D . E . F . G . H) in positive logic.
2122
| X | X | X | X | X | X | L | X | H |
2223
| X | X | X | X | X | X | X | L | H |
2324
| H | H | H | H | H | H | H | H | L |
25+
=======
26+
>>>>>>> parent of a3517e7 (Update README.md)
2427
28+
| INPUT A | INPUT B | OUTPUT |
29+
| ------- | ------- | ------- |
30+
| X | H | H |
31+
| H | X | H |
32+
| L | L | L |
2533

2634
## Pin names
2735

2836
| Name | Description |
2937
| ---- | ----------------- |
3038
| A | Input signal A |
3139
| B | Input signal B |
32-
| C | Input signal C |
33-
| D | Input signal D |
34-
| E | Input signal E |
35-
| F | Input signal F |
36-
| G | Input signal G |
37-
| H | Input signal H |
3840
| Y | Output signal |
3941
| GND | Ground |
4042
| VCC | Supply voltage |
@@ -46,17 +48,17 @@ To use this chip in your project, include it as a dependency in your `diagram.js
4648

4749
```json
4850
"dependencies": {
49-
"chip-cd54hct30": "github:wokwi-custom-chips/cd54hct30@0.1.0"
51+
"chip-sn74ahct1g32": "github:wokwi-custom-chips/sn74ahct1g32@0.1.0"
5052
}
5153
```
5254

53-
Then, add the chip to your circuit by adding a `chip-cd54hct30` item to the `parts` section of diagram.json:
55+
Then, add the chip to your circuit by adding a `chip-sn74ahct1g32` item to the `parts` section of diagram.json:
5456

5557
```json
5658
"parts": {
5759
...,
58-
{ "type": "chip-cd54hct30", "id": "chip1" }
60+
{ "type": "chip-sn74ahct1g32", "id": "chip1" }
5961
},
6062
```
6163

62-
For a complete example, see [The cd54hct30 chip test project](https://wokwi.com/projects/398977400657873921).
64+
For a complete example, see [The sn74ahct1g32 chip test project](https://wokwi.com/projects/398967433536335873).

0 commit comments

Comments
 (0)