Search found 7 matches

by bgaarsoe
Thu May 26, 2011 3:54 pm
Forum: General Discussions
Topic: Small DIP PLDs
Replies: 17
Views: 6082

I'll have to check the software to see if the GAL16V8D will suit my needs. I can get 10 of them for $12 with the shipping.

Anything from Xilinx would be extreme overkill. I just want to replace the logic in 5 gate chips.

You might check E-Bay from time to time: I have bought large lots of the ...
by bgaarsoe
Thu May 26, 2011 3:43 pm
Forum: General Discussions
Topic: Small DIP PLDs
Replies: 17
Views: 6082

I have been getting a good supply of GAL devices 22v10 (and 16v8) types from Jameco.com. They seem to carry some handy parts for the hobbyist.

As far as the atmel wincupl it is "quirky" has anyone tried the software from logical devices? I have been considering purchase of it.

The Logical ...
by bgaarsoe
Mon Dec 01, 2008 12:32 am
Forum: Programming
Topic: hex to decimal conversion
Replies: 15
Views: 33649

Thanks, Bogax.
by bgaarsoe
Sun Nov 30, 2008 2:52 am
Forum: Programming
Topic: hex to decimal conversion
Replies: 15
Views: 33649

I found this algorithm years ago and have it programmed into a 6502 circuit I built, and it works pretty well. I think it is called the Babylonia Algorithm. It uses simple math operations, and as long as the numbers are not really large, it converges to fairly accurate values with about 10 to 15 ...
by bgaarsoe
Sun Nov 30, 2008 12:45 am
Forum: General Discussions
Topic: Help i need to create a program and i dont know how
Replies: 25
Views: 11055

GARTHWILSON wrote:
Quote:
It was too late to edit it, so here it is again:
You should always be able to go back and edit your own posts, but you'll have to be logged in or the "Edit" button won't show.
Thanks again, Garth.
by bgaarsoe
Sat Nov 29, 2008 6:25 pm
Forum: General Discussions
Topic: Help i need to create a program and i dont know how
Replies: 25
Views: 11055

Thanks, Garth. It was too late to edit it, so here it is again:


.ORG $8000

XDELAY .EQU 155 ;CONSTANTS: USED IN THE DELAY LOOP TO DETERMINE DELAY DURATION
YDELAY .EQU 155 ;FIDDLE WITH THESE TO GET THE RIGHT DELAY.
ADELAY .EQU 5

SCREENMEM .EQU $7000 ;THIS NEEDS TO BE YOUR SCREEN MEM LOCATION ...
by bgaarsoe
Sat Nov 29, 2008 8:09 am
Forum: General Discussions
Topic: Help i need to create a program and i dont know how
Replies: 25
Views: 11055

Another Example

It may already be too late for you, but here is another short example with comments (Too bad about the formatting. Everything gets squished. :cry: ):

.ORG $200

XDELAY .EQU 155 ;THESE DETERMINE DELAY DURATION
YDELAY .EQU 155 ;FIDDLE WITH THESE TO GET THE RIGHT DELAY
ADELAY .EQU 5

SCREENMEM .EQU ...