New Life Games LLC
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length

News:

Welcome to the NewLifeGames.com message forum! 

 


NLG Site Navigation Menu


Archives of old posts can be found at...... Newlifegames.net/nlg/

Author Topic: Testing Odd Components  (Read 7634 times)

0 Members and 1 Guest are viewing this topic.

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Testing Odd Components
« on: April 28, 2014, 06:42:17 PM »
 This thread will be dedicated to testing odd parts or doing uncommon tests on common and uncommon parts!

To kick it off, here's a way to test Triacs:

Remove the device from the circuit, being VERY careful to ensure the circuit is not energized!

Take a digital ohmmeter and test between the different legs on the device: T1, T2, and Gate. Each resistance test will be VERY high, if not infinity, EXCEPT for T1 to Gate.

Gate to T1: 10 to 200 ohms
T1 to Gate: Infinity
T1 to T2: Infinity
T2 to T1: Infinity
T2 to Gate: Infinity
Gate to T2: Infinity

Now, there are some exceptions! Some Triacs will read from 10 to 200 ohms BOTH WAYS between T1 and Gate.

Next, attach one meter lead to T1 and the other to T2. Use a screwdriver blade to short between T2 and Gate. The resistance between T1 and T2 will drop to around 15 to 50 ohms. If it does not, reverse the leads on T1 and T2 then try again. One way will read infinite and the other will read low resistance when T2 and Gate are shorted together.

This method isn't foolproof, but is a good general test to check for a shorted triac.
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #1 on: April 28, 2014, 06:45:33 PM »
If you have an EPROM programmer from EETools that uses the Max Loader software and it doesn't support testing of a particular 74xx or 4xxx series logic chip, they can be added manually!

The lg.dat file in the c:\program files\EETools directory contains the data for those ICs. It is trivial to add items to that file, provided you structure them properly.

Here are the values that can be entered into each spot:

0 - Logic Low Input
1 - Logic High Input
L - Logic Low Output
H - Logic High Output
Z - High Impedance Output (Chip disconnected from bus)
C - Clocking - Pin transitions from low to high
X - Don't Care.
G - Ground Pin
V - Vcc, or Power Pin (+5v)

An example of this is a 7421/74LS21/etc, which is a Dual 4-input AND Gate and not on the list of ICs for the burner to test. The logic table is as follows:

Code: [Select]
Inputs   Output
A B C D    Y
---------------
H H H H    H
L X X X    L
X L X X    L
X X L X    L
X X X L    L

ALL 4 inputs must be high for the output to be high. Gate 1 uses pins 1, 2, 4, and 5 for input and 6 for the output. Gate 2 uses 9, 10, 12, and 13 for input and 8 for the output. Pin 7 is ground, pin 14 is Vcc (power), and both 3 and 11 are not used. A value of 0 is placed in the location of the unused pins.

The structure of the data file for chip to be defined starts with a dot, the chip number, some spaces, and the # of pins on the chip.

Code: [Select]
.7421 14

So with this in mind, here is the entry for the 7421:

Code: [Select]
.7421 14
00000LGL00000V
10000LGL10000V
01000LGL01000V
11000LGL11000V
00010LGL00010V
10010LGL10010V
01010LGL01010V
11010LGL11010V
00001LGL00001V
10001LGL10001V
01001LGL01001V
11001LGL11001V
00011LGL00011V
10011LGL10011V
01011LGL01011V
11011HGH11011V

This walks through all 16 possible combinations for the 4 inputs. It is possible to do this in as few as 5 lines, which is what the truth table (logic function table) shows, but for a more thorough test, all possible combinations for the inputs should be tested.

This chip definition can be added to the end of the file or in the appropriate ordered place within the file. If it is placed at the end of the file then you must scroll all the way to the end of the file to choose it. The added benefit of defining the IC chip in this file is that it will then be used when clicking "Auto Find" to ID a chip.

Enjoy!
« Last Edit: November 06, 2021, 08:58:58 PM by channelmaniac »
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #2 on: April 28, 2014, 06:48:04 PM »
For the lg.dat file, it appears that X is for "don't care"...

Using that nomenclature, here is the text to add to the lg.dat file to test an Intel 8216 "4 bit bi-directional bus driver" IC.

Code: [Select]
.8216 16
0XL0XL0G0LX0LX0V
0XH1XL0G0LX0LX0V
0XL0XH1G0LX0LX0V
0XL0XL0G1HX0LX0V
0XL0XL0G0LX1HX0V
0XH1XH1G1HX1HX0V
0L0XL0XGX0LX0L1V
0H1XL0XGX0LX0L1V
0L0XH1XGX0LX0L1V
0L0XL0XGX1HX0L1V
0L0XL0XGX0LX1H1V
0H1XH1XGX1HX1H1V

If you put it at the top of the file, it will be the first chip in the list.

A REALLY cool thing about adding this chip is that once added, the programmer will detect it using the "Auto Detect" function!!!

Enjoy!
« Last Edit: March 08, 2016, 09:05:19 AM by channelmaniac »
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #3 on: April 28, 2014, 06:50:56 PM »
Here is a 7489, 74289, AM27LS02, and Intel P3101A test:

Code: [Select]
.7489 16
0000X0XGX0X0000V
001XZXZGZXZX000V
1000X0XGX0X0000V
101XZXZGZXZX000V
0000X0XGX0X0001V
001XZXZGZXZX001V
1000X0XGX0X0001V
101XZXZGZXZX001V
0000X0XGX0X0010V
001XZXZGZXZX010V
1000X0XGX0X0010V
101XZXZGZXZX010V
0000X0XGX0X0011V
001XZXZGZXZX011V
1000X0XGX0X0011V
101XZXZGZXZX011V
0000X0XGX0X0100V
001XZXZGZXZX100V
1000X0XGX0X0100V
101XZXZGZXZX100V
0000X0XGX0X0101V
001XZXZGZXZX101V
1000X0XGX0X0101V
101XZXZGZXZX101V
0000X0XGX0X0110V
001XZXZGZXZX110V
1000X0XGX0X0110V
101XZXZGZXZX110V
0000X0XGX0X0111V
001XZXZGZXZX111V
1000X0XGX0X0111V
101XZXZGZXZX111V
0001X1XGX1X1000V
001XLXLGLXLX000V
1001X1XGX1X1000V
101XLXLGLXLX000V
0001X1XGX1X1001V
001XLXLGLXLX001V
1001X1XGX1X1001V
101XLXLGLXLX001V
0001X1XGX1X1010V
001XLXLGLXLX010V
1001X1XGX1X1010V
101XLXLGLXLX010V
0001X1XGX1X1011V
001XLXLGLXLX011V
1001X1XGX1X1011V
101XLXLGLXLX011V
0001X1XGX1X1100V
001XLXLGLXLX100V
1001X1XGX1X1100V
101XLXLGLXLX100V
0001X1XGX1X1101V
001XLXLGLXLX101V
1001X1XGX1X1101V
101XLXLGLXLX101V
0001X1XGX1X1110V
001XLXLGLXLX110V
1001X1XGX1X1110V
101XLXLGLXLX110V
0001X1XGX1X1111V
001XLXLGLXLX111V
1001X1XGX1X1111V
101XLXLGLXLX111V

These chips have open collector outputs so they needed to be set to Z instead of H on outputs for high as there are no resistors tying the outputs high. Or, one could build an adapter with the appropriate resistors to allow for full testing.


This is for a 74189 (tri-state):

Code: [Select]
.74189 16
0000X0XGX0X0000V
001XHXHGHXHX000V
1000X0XGX0X0000V
101XHXHGHXHX000V
0000X0XGX0X0001V
001XHXHGHXHX001V
1000X0XGX0X0001V
101XHXHGHXHX001V
0000X0XGX0X0010V
001XHXHGHXHX010V
1000X0XGX0X0010V
101XHXHGHXHX010V
0000X0XGX0X0011V
001XHXHGHXHX011V
1000X0XGX0X0011V
101XHXHGHXHX011V
0000X0XGX0X0100V
001XHXHGHXHX100V
1000X0XGX0X0100V
101XHXHGHXHX100V
0000X0XGX0X0101V
001XHXHGHXHX101V
1000X0XGX0X0101V
101XHXHGHXHX101V
0000X0XGX0X0110V
001XHXHGHXHX110V
1000X0XGX0X0110V
101XHXHGHXHX110V
0000X0XGX0X0111V
001XHXHGHXHX111V
1000X0XGX0X0111V
101XHXHGHXHX111V
0001X1XGX1X1000V
001XLXLGLXLX000V
1001X1XGX1X1000V
101XLXLGLXLX000V
0001X1XGX1X1001V
001XLXLGLXLX001V
1001X1XGX1X1001V
101XLXLGLXLX001V
0001X1XGX1X1010V
001XLXLGLXLX010V
1001X1XGX1X1010V
101XLXLGLXLX010V
0001X1XGX1X1011V
001XLXLGLXLX011V
1001X1XGX1X1011V
101XLXLGLXLX011V
0001X1XGX1X1100V
001XLXLGLXLX100V
1001X1XGX1X1100V
101XLXLGLXLX100V
0001X1XGX1X1101V
001XLXLGLXLX101V
1001X1XGX1X1101V
101XLXLGLXLX101V
0001X1XGX1X1110V
001XLXLGLXLX110V
1001X1XGX1X1110V
101XLXLGLXLX110V
0001X1XGX1X1111V
001XLXLGLXLX111V
1001X1XGX1X1111V
101XLXLGLXLX111V

And this is for an AMD AM29701 which is identical to the 74189 except for having non-inverting outputs:

Code: [Select]
.29701 16
0000X0XGX0X0000V
001XLXLGLXLX000V
1000X0XGX0X0000V
101XLXLGLXLX000V
0000X0XGX0X0001V
001XLXLGLXLX001V
1000X0XGX0X0001V
101XLXLGLXLX001V
0000X0XGX0X0010V
001XLXLGLXLX010V
1000X0XGX0X0010V
101XLXLGLXLX010V
0000X0XGX0X0011V
001XLXLGLXLX011V
1000X0XGX0X0011V
101XLXLGLXLX011V
0000X0XGX0X0100V
001XLXLGLXLX100V
1000X0XGX0X0100V
101XLXLGLXLX100V
0000X0XGX0X0101V
001XLXLGLXLX101V
1000X0XGX0X0101V
101XLXLGLXLX101V
0000X0XGX0X0110V
001XLXLGLXLX110V
1000X0XGX0X0110V
101XLXLGLXLX110V
0000X0XGX0X0111V
001XLXLGLXLX111V
1000X0XGX0X0111V
101XLXLGLXLX111V
0001X1XGX1X1000V
001XHXHGHXHX000V
1001X1XGX1X1000V
101XHXHGHXHX000V
0001X1XGX1X1001V
001XHXHGHXHX001V
1001X1XGX1X1001V
101XHXHGHXHX001V
0001X1XGX1X1010V
001XHXHGHXHX010V
1001X1XGX1X1010V
101XHXHGHXHX010V
0001X1XGX1X1011V
001XHXHGHXHX011V
1001X1XGX1X1011V
101XHXHGHXHX011V
0001X1XGX1X1100V
001XHXHGHXHX100V
1001X1XGX1X1100V
101XHXHGHXHX100V
0001X1XGX1X1101V
001XHXHGHXHX101V
1001X1XGX1X1101V
101XHXHGHXHX101V
0001X1XGX1X1110V
001XHXHGHXHX110V
1001X1XGX1X1110V
101XHXHGHXHX110V
0001X1XGX1X1111V
001XHXHGHXHX111V
1001X1XGX1X1111V
101XHXHGHXHX111V
« Last Edit: November 06, 2021, 08:59:53 PM by channelmaniac »
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #4 on: April 28, 2014, 06:53:04 PM »
Here is the code to test the 82S16, a 256 x 1 bipolar RAM with inverted outputs. It also works for the Fairchild 93421 bipolar RAM and the test code is 1024 lines long.

It operates in this fashion:

Write 0 to address 0
Read from address 0
..
Write 0 to address 11111111 (255)
Read from address 11111111 (255)

Then repeat for writing a 1 and reading it back for each address.

It's too big to post as text, so here's an attachment.

Enjoy!
« Last Edit: March 08, 2016, 09:06:13 AM by channelmaniac »
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #5 on: April 28, 2014, 06:53:41 PM »
AMD AM25S09: Quad 2-input High Speed Register:

Code: [Select]
.25S09 16
0L0XX0LGCL0XX0LV
0H1XX1HGCH1XX1HV
1LX00XLGCLX00XLV
1HX11XHGCHX11XHV
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #6 on: April 28, 2014, 06:56:17 PM »
8212 8-bit Input/Output Port:

Code: [Select]
.8212 24
00ZLZLZLZL0G1ZLZLZLZLZLV
00ZLZLZLZL0G11LZLZLZLZLV
00ZLZLZLZLCG11LZLZLZLZLV
10ZZZZZZZZ0G01ZZZZZZZZHV
00ZLZLZLZL0G11LZLZLZLZLV
001H1H1H1H1G11H1H1H1H1LV
001H0L1H0L1G11H1L0H1L0LV
000L1H0L1H1G11L0H1L0H1LV
000L0L0L0L1G11L0L0L0L0LV
001H1H1H1HCG11H1H1H1H1LV
001H0L1H0LCG11H1L0H1L0LV
000L1H0L1HCG11L0H1L0H1LV
000L0L0L0LCG11L0L0L0L0LV

The last 8 lines are a bit redundant but it checks the chip with either STB held high or clocked (low-high-low pulse).

First 5 lines checks interrupt function and after that the inputs and outputs are tested.
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #7 on: April 28, 2014, 06:57:53 PM »
82S25 is the same as a P3101 for testing. Smiley

Here are a few more:

Code: [Select]
.8T97 16
11Z1Z1ZGZ1Z1Z11V
01H1H1HGH1H1H10V
00L0L0LGL0L0L00V
01H0L0LGL0Z0Z01V
00L1H0LGL0Z0Z01V
00L0L1HGL0Z0Z01V
00L0L0LGH1Z0Z01V
10Z0Z0ZGZ0L0L00V
10Z0Z0ZGZ0H1L00V
10Z0Z0ZGZ0L0H10V
10Z0Z0ZGZ0L0L00V
.8T96 16
11Z1Z1ZGZ1Z1Z11V
10Z0Z0ZGZ0Z0Z01V
00H0H0HGH0H0H00V
01L1L1LGL1L1L10V
.8T98 16
11Z1Z1ZGZ1Z1Z11V
10Z0Z0ZGZ0Z0Z01V
00H0H0HGH0Z0Z01V
01L1L1LGL1Z1Z11V
10Z0Z0ZGZ0H0H00V
11Z1Z1ZGZ1L1L10V
.8T38 16
1XL1XL1G1LX1LX1V
0XH0XH1G1HX0HX0V
L1HL1H0G0H1LH1LV
10L10L0G0L01L01V
10X10X0G0X01X01V
X0LX0L0G0L0XL0XV

8T38: The first 2 test the chip from Bus to Out (Input to Bus outputs disabled.) The 3rd tests the Input to Bus when the Input is high. The last three are a bit redundant.

8T96: Autofind will find it by itself. It's similar to the 8T98 but the enable lines must BOTH be toggled for all gates to be enabled.

8T98: Autofind will find it as either an 8T98 or an 8T96. The enable lines are separate on this chip: One controls 2 gates and the other controls 4 gates.
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #8 on: April 28, 2014, 06:59:22 PM »
8T95: Identical to 8T96, but with non-inverting outputs:

Code: [Select]
.8T95 16
11Z1Z1ZGZ1Z1Z11V
10Z0Z0ZGZ0Z0Z01V
00L0L0LGL0L0L00V
01H1H1HGH1H1H10V

8T28:

Code: [Select]
.8T28 16
1ZL0ZL0G0LZ0LZ1V
1ZH1ZH1G1HZ1HZ1V
00L00L0G0L00L01V
01H11H1G1H11H11V
0L0XL0XGX0LX0L0V
0H1XH1XGX1HX1H0V

8T26 is like the 8T28, but has inverted outputs. Wouldn't be too hard to create from the 8T28 script.
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

Offline channelmaniac

  • Surface mount soldering geek
  • Global NLG Site Moderator
  • NLG Member 501 to 10,000 Posts
  • *
  • Posts: 2472
  • Reputation Power: 174
  • channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!channelmaniac Is an-NLG GOD!
  • Few things are better than fixing an old game...
    • Arcadecomponents.com - Looking for hard to find chips?
Re: Testing Odd Components
« Reply #9 on: April 28, 2014, 07:00:19 PM »
Some serial interface chips:

Code: [Select]
.26LS31 16
0LH1HL0G0LHXHL0V
1HL1LH1G1HLXLH1V
0LHXLH1G1HL0HL0V
1HLXLH1G1HL0LH1V
XZZ0ZZXGXZZ1ZZXV
.26LS33 16
10L1L01G10LXL01V
01H1H10G01HXH10V
10LXL01G10L0L01V
01HXH10G01H0H10V
XXZ0ZXXGXXZ1ZXXV
.1489 14
00H00HGH00H00V
10L10LGL01L01V

Can't do a 1488 as pin 1 is a negative power pin.
I have too many hobbies! Electronics, gunsmithing, Miatas, arcade games, metal detecting, etc...

http://www.arcadecomponents.com

 

Cell Phone and Pad Mode

imode wap wap2

NLG Archives

Archives @ newlifegames.net Wayback Machine

Contact Us

NLG Shop 928 754-4147 Email Us 1788 Highway 95 30 BHC City AZ 86442
If you find this site helpful, please consider becoming a Contributing NLG Member with a monthly subscription to help cover the cost of pizza, coffee, aspirin, hosting, and bandwidth.
Contributing Members: get unlimited personal messages, can save topics and replies as drafts,
can post to the Classified ads, get unlimited access to the downloads, and also get this minty badge:



**Subscription Link** (Click Here) **Subscription Link**



           
If you would rather remain anonymous Thank You or just want to help support the site, please use this "make a donation" button:




From your entire NLG staff, thank you for supporting NLG.


New Life Games LLC 1788 HIGHWAY 95 UNIT 30 BULLHEAD CITY AZ 86442




Newlifegames.com     Newlifegames.net     Newlifegames.org

Newlifegame.com     Newlifegame.net     Newlifegame.org    Newlifegames.us

   New Life Games     NewLifeGames  NLG

 We Bring new Life to old Games    1-888-NLG-SLOTS

Are all Copyright and Trademarks of New Life Games LLC 1992 - 2022


FAIR USE NOTICE:



This site contains copyrighted material the use of which has not always been specifically authorized by the copyright owner.
We make such material available in an effort to advance awareness and understanding of the issues involved.
We believe this constitutes a fair use of any such copyrighted material as provided for in section 107 of the US Copyright Law.
In accordance with Title 17 U.S.C. Section 107, the material on this site is distributed without profit to those
who have expressed a prior interest in receiving the included information for research and educational purposes.

For more information please visit: http://www.law.cornell.edu/uscode/17/107.shtml
If you wish to use copyrighted material from this site for purposes of your own that go beyond fair use,
you must obtain permission directly from the copyright owner.




The NewLifeGames.com website is optimized for use with Firefox and a minimum screen resolution of 1600 x 900 pixels.

SimplePortal 2.3.5 © 2008-2012, SimplePortal