apostrophe after signal name

Building your first 6502-based project? We'll help you get started here.
Post Reply
jeffythedragonslayer
Posts: 114
Joined: 03 Oct 2021

apostrophe after signal name

Post by jeffythedragonslayer »

In Appendix A, "65x Signal Description" of Eyes & Lichty, several signal names have an apostrophe after them. For example, there is:
  • IRQ'
  • NMI'
  • R/W'
  • RESET'
  • ABORT'
  • ML'
  • VP'
What does the apostrophe mean? How is it pronounced?
Sean
Posts: 101
Joined: 15 Feb 2021

Re: apostrophe after signal name

Post by Sean »

jeffythedragonslayer wrote:
In Appendix A, "65x Signal Description" of Eyes & Lichty, several signal names have an apostrophe after them. For example, there is:
  • IRQ'
  • NMI'
  • R/W'
  • RESET'
  • ABORT'
  • ML'
  • VP'
What does the apostrophe mean? How is it pronounced?
I think the apostrophe is equivalent to the B suffix that is sometimes used, which represents the bar (bar over signal name) shown in diagrams, which indicates an active-low signal.
jeffythedragonslayer
Posts: 114
Joined: 03 Oct 2021

Re: apostrophe after signal name

Post by jeffythedragonslayer »

Where have you seen the B suffix?
User avatar
GARTHWILSON
Forum Moderator
Posts: 8773
Joined: 30 Aug 2002
Location: Southern California
Contact:

Re: apostrophe after signal name

Post by GARTHWILSON »

jeffythedragonslayer wrote:
Where have you seen the B suffix?
It's in all the WDC data sheets. It stands for "bar," and WDC did it because the equipment used to write the early data sheets was not able to put a bar over the various signal names, just as we can't get it here in the forum software (except as an image). So for example
overbarScreenshot.gif
overbarScreenshot.gif (1.13 KiB) Viewed 2846 times
, that is, NMI-not, or NMI-bar, got turned into NMIB.
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?
User avatar
BillO
Posts: 1038
Joined: 12 Dec 2008
Location: Canada

Re: apostrophe after signal name

Post by BillO »

GARTHWILSON wrote:
Image, that is, NMI-not, or NMI-bar, got turned into NMIB
AKA /NMI or ~NMI or !NMI
Bill
jeffythedragonslayer
Posts: 114
Joined: 03 Oct 2021

Re: apostrophe after signal name

Post by jeffythedragonslayer »

I guess I can pronounce it "prime" when I see it like that. Thanks. This thread claims to have BBCode for overline but I don't know why it doesn't work when I try it here:

https://www.phpbb.com/community/viewtopic.php?t=2168800
User avatar
BillO
Posts: 1038
Joined: 12 Dec 2008
Location: Canada

Re: apostrophe after signal name

Post by BillO »

From a logic perspective most pronounce it "not" which is a hugely powerful operator in logic.

In pure binary logic you have 3 operators: "or", "and" and "not". To me, "not" has always given logic its magic. It's the active operator while "and" and "or" are passive operators.

I'm not explaining this well.
Bill
jeffythedragonslayer
Posts: 114
Joined: 03 Oct 2021

Re: apostrophe after signal name

Post by jeffythedragonslayer »

BillO wrote:
From a logic perspective most pronounce it "not" which is a hugely powerful operator in logic.

In pure binary logic you have 3 operators: "or", "and" and "not". To me, "not" has always given logic its magic. It's the active operator while "and" and "or" are passive operators.

I'm not explaining this well.
I think what you may be trying to say is that a NOT gate has to be able to turn "nothing" into "something" but OR and AND gates simply absorb and combine what's given to them in different ways and forward it to their output?
User avatar
GARTHWILSON
Forum Moderator
Posts: 8773
Joined: 30 Aug 2002
Location: Southern California
Contact:

Re: apostrophe after signal name

Post by GARTHWILSON »

jeffythedragonslayer wrote:
I think what you may be trying to say is that a NOT gate has to be able to turn "nothing" into "something"
and vice-versa, where the "something" is a 1 and the "nothing" is a 0. With only passive components (diodes and resistors, and no power supply), you can get AND and OR (albeit with loss, so after a couple of stages you're out of strength to drive anything); but NOT requires active circuitry.
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?
User avatar
BigDumbDinosaur
Posts: 9426
Joined: 28 May 2009
Location: Midwestern USA (JB Pritzker’s dystopia)
Contact:

Re: apostrophe after signal name

Post by BigDumbDinosaur »

jeffythedragonslayer wrote:
I guess I can pronounce it "prime" when I see it like that. Thanks. This thread claims to have BBCode for overline but I don't know why it doesn't work when I try it here:

https://www.phpbb.com/community/viewtopic.php?t=2168800

The use of HTML in posts on this forum is not supported. There are different versions of PHP-BB, so it could be a later version supports the “decorate” HTML.

I use /XY for a signal that is active low, e.g., /IRQ. In conversation, that would be pronounced “IRQ not”.
x86?  We ain't got no x86.  We don't NEED no stinking x86!
jeffythedragonslayer
Posts: 114
Joined: 03 Oct 2021

Re: apostrophe after signal name

Post by jeffythedragonslayer »

I didn't try the HTML Replacement - I tried the BBCode Usage.
Post Reply