Search found 17 matches

by Gurft
Wed May 12, 2021 10:55 pm
Forum: Programming
Topic: C64/C16/Plus4-hosted Small C compiler cc64
Replies: 6
Views: 3138

Re: C64/C16/Plus4-hosted Small C compiler cc64

Now I’m much more incentivized to get my Plus4 working properly again!
by Gurft
Sun May 09, 2021 1:15 pm
Forum: Newbies
Topic: Character LCD initialization frustration
Replies: 4
Views: 1187

Re: Character LCD initialization frustration

So I went back this morning with a clear head and did some more digging for datasheet information outside the standard Hitachi sheet and the minimal one for the LCD display that I had.

I stumbled on this version: http://web.alfredstate.edu/faculty/weimandn/lcd/lcd_initialization/lcd_initialization ...
by Gurft
Sun May 09, 2021 12:11 pm
Forum: Newbies
Topic: Character LCD initialization frustration
Replies: 4
Views: 1187

Re: Character LCD initialization frustration

I do have a 50ms delay right after I set the DDR and set the output register to zeros before I start twiddling bits to initialize the LCD. I’m going to spend some time with the data sheets and see if maybe my delays are too long. I’m just doing 50ms for all of them...
by Gurft
Sat May 08, 2021 10:01 pm
Forum: Newbies
Topic: Character LCD initialization frustration
Replies: 4
Views: 1187

Character LCD initialization frustration

Going crazy trying to get this 4 x 20 Character display working. All I get are a screen full of blocks (well initially I get a single line, then it flips to a full screen) I tested on a 2x16 also and get the same results, so I think my issue is in my initialization code. Code is deeply taken from ...
by Gurft
Fri Apr 23, 2021 1:00 pm
Forum: Hardware
Topic: Character Display directly on bus or through VIA?
Replies: 5
Views: 718

Character Display directly on bus or through VIA?

As I look across different 6502 projects I see two different methods of connectivity for Character LCD displays. Some projects show them hanging off the ports of a VIA and some projects have them directly on the system bus with the enable being driven by address decoding.

I plan on using a 4 x 20 ...
by Gurft
Sat Apr 17, 2021 8:56 pm
Forum: Newbies
Topic: Issues with access ROM when using GAL
Replies: 5
Views: 1316

Re: Issues with access ROM when using GAL

So, I figured it out! In my effort to take some photos of the analyzer and show the difference between when it works and doesn't I noticed something peculiar that I was ignoring, but shouldn't have been.


When it *worked* with CE and OE grounded, I saw this on the anaylzer:


ADDR DATA ROMEN
FFFC ...
by Gurft
Sat Apr 17, 2021 8:08 pm
Forum: Newbies
Topic: Issues with access ROM when using GAL
Replies: 5
Views: 1316

Issues with access ROM when using GAL

I've been redoing my memory map and decided to use a GAL for decoding, wrote up the CUPL code, programmed the GAL, hooked up some DIPs and LEDs and it works as expected. (GAL20V8B)

What's odd is when I have the GAL in place, system won't start. Logic analyzer shows OE and CE on the ROM (28C65BP ...
by Gurft
Sat Dec 30, 2006 10:18 pm
Forum: Hardware
Topic: Probes for Tektronix 434
Replies: 1
Views: 3158

Probes for Tektronix 434

I got a hold of a Tektronix 434 O-scope for *FREE* today. It was knows as working when it was last used (about 3 months ago) but the guy I got it from couldn't locate the probes.

I looked on eBay and see lots of probes, but not sure if I need to match the probes to the scope, or can I use any 1X ...
by Gurft
Sun Dec 11, 2005 11:38 pm
Forum: Hardware
Topic: gSchem device templates
Replies: 1
Views: 2429

gSchem device templates

Does anyone have a parts database for common 6502 parts for gSchem. I finally got it working on my mac and have made a few schematics->PCBs already with great success, would like to use it to start desiging my 6502 computer.
by Gurft
Tue May 24, 2005 4:37 pm
Forum: Hardware
Topic: Recommended EEProm Programmer
Replies: 10
Views: 7416

Recommended EEProm Programmer

Does anyone have a recommended, relatively inexpensive EEProm programmer? I built the SALT programmer and have been putting in my programs with toggle switches. Educational... yes, but very tedious now that my programs are getting much larger.

It'd also be nice to have one that can program PICs ...
by Gurft
Wed May 18, 2005 1:12 am
Forum: Programming
Topic: Advanced data structures in ASM?
Replies: 4
Views: 6349

Advanced data structures in ASM?

Has anyone implemented a hash or a linked list datastructure in 6502 (not 65C02) ASM?

I think the linked list itself would be pretty easy to put together (it's just a bunch of pointers that you can reference indirectly) but the hash table seem sto be a bit more complicated....

I'm still working on ...
by Gurft
Mon May 16, 2005 11:26 am
Forum: Programming
Topic: First real foray into 6502 programming....
Replies: 4
Views: 3139

Thanks guys! This is exactly what I was looking for. I'm very used to writing code so that others can read and understand what I'm doing (and not end up like the gentleman Garth discusses at the end of his post)

The reason I asked for you guys to look over my code is that there are standard ...
by Gurft
Mon May 16, 2005 4:22 am
Forum: Programming
Topic: First real foray into 6502 programming....
Replies: 4
Views: 3139

First real foray into 6502 programming....

So I've been learning 6502 assembly, picking it up pretty quickly now that I'm writing my own code.

I wrote this "bouncing ball" program that the next step is to turn it into some kind of pong game, it runs in MK's 6502 simulator quite well, am looking for comments, critic, and suggestions.

http ...
by Gurft
Fri May 06, 2005 8:19 pm
Forum: Hardware
Topic: Interfacing TTL to CMOS?
Replies: 1
Views: 2041

Interfacing TTL to CMOS?

So I think I goofed when I ordered my parts for my computer I'm building. I ordered everything TTL EXCEPT for my EEPROM.

Is there any suggested glue logic so that I can use this CMOS EEPROM, or should I just go find a TTL one to use instead....

From what I've read, since it *is* an EEPROM and ...
by Gurft
Fri May 06, 2005 4:26 pm
Forum: General Discussions
Topic: Common development path to follow?
Replies: 2
Views: 2414

Thanks for the link, it's exactly the info I was looking for. Reminds me of when I built a Handyboard in college, build in small steps and test as you go, little successes help make the project go a little bit easier.