ROMs: Q&A for Understanding Crosspoints and Fuses

  • Thread starter CoolDude420
  • Start date
  • Tags
    Memory
In summary: So for each connected cross point, he is taking the binary code corresponding to the cross point and assuming it to be a 1. This makes perfect sense when you consider the diagram and the truth table.
  • #1
CoolDude420
199
8

Homework Statement


We have been introducted to ROMs in class. I just have a few questions to make sure I'm getting this concept correctly.

44fc8831b5.jpg


The intersection between the lines are called crosspoints. At each crosspoint there are programmable fuses. The fuses can either be unchanged(short circuit) meaning that the crosspoint would be connected the two wires. Or the fuse can be blown(open circuit) meaning that the crosspoint would no longer be connecting the two wires. Connected cross points are repersented by an x.

Q1 ) Is my understanding correct?

Q2) if I see an X on a diagram like the one above, that means that it is an untouched fuse which is making a short circuit right?

Q3) Take the first line in the diagram above(decoder output 0.) In my notes, my lecturer has the corresponding 'word' or 8 bit/1 byte binary code for output 0 as : 10110110. He is taking each X(connected cross point) as a 1. Why? How do connecting cross points automatically become a 1?

Homework Equations

The Attempt at a Solution

 
Physics news on Phys.org
  • #2
CoolDude420 said:

Homework Statement


We have been introducted to ROMs in class. I just have a few questions to make sure I'm getting this concept correctly.

44fc8831b5.jpg


The intersection between the lines are called crosspoints. At each crosspoint there are programmable fuses. The fuses can either be unchanged(short circuit) meaning that the crosspoint would be connected the two wires. Or the fuse can be blown(open circuit) meaning that the crosspoint would no longer be connecting the two wires. Connected cross points are repersented by an x.

Q1 ) Is my understanding correct?

Q2) if I see an X on a diagram like the one above, that means that it is an untouched fuse which is making a short circuit right?

Q3) Take the first line in the diagram above(decoder output 0.) In my notes, my lecturer has the corresponding 'word' or 8 bit/1 byte binary code for output 0 as : 10110110. He is taking each X(connected cross point) as a 1. Why? How do connecting cross points automatically become a 1?

Homework Equations

The Attempt at a Solution

Sorry, that makes no sense to me at all. Can you link to the original content?
 
  • #3
berkeman said:
Sorry, that makes no sense to me at all. Can you link to the original content?

http://slideplayer.com/slide/1585934/

d4e10bff9d.png

68eefc30e0.jpg

6e68103630.jpg

586c8d64d2.jpg
 
  • #4
The first line of the truth table(00000 inputs) corresponds to the first horizontal line in the diagram(decoder output 0.) If you note every time there is a X on the horizontal line, the corresponding bit has a 1 in the truth table. Why is this?
 
  • #5
For your main question, Q3, I'll leave it to CoolDude for now, as he's started on one tack.
For Q1, I think your explanation is more or less ok, depending on how full an understanding you want. (See Q2)
For Q2, If they really were short circuits at the marked cross points, when you had a 1 on, say, decoder output 3, which of the A's would be connected by shorts to that 1 signal? (If you don't get a flash of enlightenment when you first think about it, try tracing the route of the electric current from the 31 line to each of the A's.)

Edit: changed Berkeman to CoolDude as I'd put the wrong name.
 
Last edited:
  • #6
The trick is to note that each of the OR gates actually has 32 inputs (slide #32). So the vertical line with the X's that extends from the matrix to the OR gate is actually a 32 bit wide bus. The X's represent where the bus taps onto the corresponding horizontal lines. So the first OR gate, if if you were to look at the "expanded" view would look something like:
upload_2016-11-23_9-29-41.png

where I've used dots rather than X's for the connections.
 
  • #7
Technically this is a one time (there's no way to undo disconnections made by blowing fuses) programmable rom (PROM) . Normally a ROM is manufactured with a circuit that only includes the connected lines. For Q3, although not shown, there's a voltage input line (a 1) on the 5 x 32 decoder, so if all 5 inputs bits are zero, it outputs a 1 on output pin 0, and a 0 on all of the other output pins.
 
  • #8
Maybe I misread the earlier posts, so I'll tackle Q3 as well.
Q3) Take the first line in the diagram above(decoder output 0.) In my notes, my lecturer has the corresponding 'word' or 8 bit/1 byte binary code for output 0 as : 10110110. He is taking each X(connected cross point) as a 1. Why? How do connecting cross points automatically become a 1?
When he says, "decoder ouput 0" in the first line of the ROM, he means, "the decoder output labelled "0" becomes true, or takes the voltage level for a logic 1, when the decoder input is 0000." Similarly the next line is "decoder output 2" which becomes logic 1 voltage when the input to the decoder is 00010. And so on down to "decoder output 31 which becomes logic 1 voltage when the input is 11111".
It doesn't matter whether the decoder inputs are all 0's or all 1's or any mixture. All the decoder outputs will be set to 0, except for exactly one of them, which will be set to 1. The decoder logic simply decides which one it should be, depending on its inputs. Decoders normally generate the inverse of all their inputs (so that input 00000 generates 11111 say) then use AND gates to combine them. Eg. output 23 is the AND of I0, I1, I2, I4 and inverted I3. This makes it a 1 for input 10111 and 0 for all other inputs.

Crosspoints become 1 when the decoder output connected to them becomes 1. So when you input 00000, decoder output 0 becomes 1 (the rest, 1-31 become 0) and output lines 7,5,4,2 and 1 become 1 via the cross points (the other outputs 6,3 and 0 remain at 0.)
 
  • #9
I hesitate to tangle with a Mentor in his specialist area, but I believe gneill is either mistaken or being a bit disingenuous with his description of the ROM array using 32 input OR gates.. If you answer my supplementary to Q2, you may see a sense in which his idea represents the logic of what is being done, but I'm pretty sure that ROMs were not implemented that way, at least in TTL. (I'm much less familiar with later families.) I certainly have 256 byte ROM from the 1960's where I know the full circuit, in which the circuit is pretty much as shown in the first diagram, except for; an 8 bit decoder, pull-up resistors, the buffers are inverters and the vital detail missing from Q2.
 
  • #10
Merlin3189 said:
I hesitate to tangle with a Mentor in his specialist area, but I believe gneill is either mistaken or being a bit disingenuous with his description of the ROM array using 32 input OR gates..

Just using the given information:
upload_2016-11-23_14-7-0.png
 
  • #11
Apologies gneill. Yes, I missed that bit of the post. I should know from past experience that you guys are pretty sharp and not usually mistaken.

I don't know now whether Hector Allford is using these OR gates symbolically or whether they really do make them like this. The one I knew certainly had an array of diodes shown in the schematic , but in IC fabrication this is so close to multiple emitter transistors, that perhaps they are generally implemented that way?
Perhaps my schematic, and functional diagrams like
PROM _Eg.jpg
, are in fact the myth to aid electricians' understanding and your diagram is the silicon reality? The logic works the same either way.

Slide 33 in the OP, which I thought missed the essential detail of the crosspoints, is probably just intended just to show the logical relation between the decoder lines and the outputs.
 
  • #12
It is quite likely that the OR gate representation is symbolic in that it describes the logic that's implemented without specifying the physical details of that implementation. A diode array can certainly be the underlying circuitry (So, diode logic implementation of the OR function) at least for some early ROM devices. In practical terms the diodes prevent the decoder outputs from affecting each other.
 
  • #13
Apologies for the late reply. Have been really busy with other modules. I finally think I understand what's going. Realising that there's 32 inputs to each OR gate makes everything much clearer. Thanks for the help all.
 
  • #14

1. What is a ROM?

A ROM (Read-Only Memory) is a type of computer memory that is pre-programmed with data and instructions that cannot be altered or erased by the user.

2. How does a ROM work?

A ROM works by storing data in the form of binary code, which is then read by the computer to perform specific functions. This data is permanently stored and can only be read, not written to or changed.

3. What are crosspoints and fuses in a ROM?

Crosspoints and fuses are physical components within a ROM that determine which bits of data are read and which are not. Crosspoints are points where connections can be made between different parts of the ROM, while fuses are used to permanently connect or disconnect these crosspoints.

4. How are crosspoints and fuses used in a ROM?

Crosspoints and fuses are used to create a specific pattern of connections within the ROM, which determines the data that can be read. By programming certain crosspoints and fuses, different data can be accessed, allowing for different functions to be performed.

5. Can a ROM be reprogrammed?

No, a ROM cannot be reprogrammed as it is read-only memory. However, there are types of ROMs, such as EPROMs (Erasable Programmable Read-Only Memory), that can be erased and reprogrammed using special equipment.

Similar threads

  • Electrical Engineering
3
Replies
83
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
6
Views
16K
  • Engineering and Comp Sci Homework Help
Replies
10
Views
1K
Replies
7
Views
1K
Replies
1
Views
616
Replies
3
Views
561
  • Engineering and Comp Sci Homework Help
Replies
29
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
15
Views
2K
Back
Top