8

This Serial Communications Controller from Zilog lists a few of its pins with a bar above the name. What does this bar mean?

From a schematic I have been looking it seems a few of these are inactive when high and active when low?

Zillog SCC

Morgoth
  • 251
  • 6
  • 15

2 Answers2

12

As you surmise, it means that the function the pin name implies is active when low.

For example, /INT is low to trigger an interrupt and /WR is low to indicate a write.

Spehro Pefhany
  • 397,265
  • 22
  • 337
  • 893
  • 3
    I'm surprised you didn't use the word "inverted". Basically, it means "not". While WR would mean the pin denotes that writing has been enabled when it is held high, /WR means that writing has been enabled when it is held low. Essentially an inversion. Or you could reinvert it by including a NOT gate in front of it. Not that you'd want to do that, just that it helps to explain it. – Octopus Feb 12 '19 at 21:10
1

It usually means an active low pin.

Lior Bilia
  • 7,560
  • 1
  • 22
  • 31