In some electronic devices that have a dedicated reset button in them, how does pressing it actually reset the whole device?

356 views

In some electronic devices that have a dedicated reset button in them, how does pressing it actually reset the whole device?

In: 22

7 Answers

Anonymous 0 Comments

Chips have lots of tiny information storage elements called flip flops. Each flip flop can store a bit of information (0 or 1). They are used to store things like the current execution point (program counter), calculation results (in CPU registers) and so on.

When you power on a flip flop it can be in any random state. To put a flip flop into a known state it has a reset input. Usually there is some circuitry which makes sure that this reset is pulled once during power up. However, most chips also have an external input for this reset which allows you to pull it from the outside. Pulling it has essentially the same effect as turning the chip off and then on again.

You are viewing 1 out of 7 answers, click here to view all answers.