Search found 57 matches

by schidester
Fri Apr 18, 2014 9:01 pm
Forum: General Discussions
Topic: Using TiddlyWiki to document projects
Replies: 14
Views: 1357

Re: Using TiddlyWiki to document projects

If you're interested, I used a Syntax Highlighter plugin that I found on the web somewhere (the site's URL is now for sale) and added a 6502 highlighter. I forget how it all works together, but if you want to play with it, start here:

http://scottchidester.com/#PluginManager ...
by schidester
Sun Apr 15, 2012 9:14 pm
Forum: Hardware
Topic: 6551 vs 6850 vs 8250 vs ?
Replies: 101
Views: 55007

Re: 6551 vs 6850 vs 8250 vs ?

I don't know if you're still on this project, but I've got an SBC that uses a 6850 to talk to a PC at 9600 baud described here:

http://chidesters.org/scott/meadow/Mead ... r_Doc.html
by schidester
Mon Nov 24, 2008 3:38 pm
Forum: General Discussions
Topic: Correct read/write strobe generation
Replies: 2
Views: 4425

The correct way to do it.

I've seen it done incorrectly in many projects, but they still probably work. This is the correct way:

Image
by schidester
Mon Nov 03, 2008 3:59 pm
Forum: General Discussions
Topic: On 6502 undocumented opcodes in hardware-level detail...
Replies: 3
Views: 4423

Thank you, that is an interesting article, and pretty much affirms what I thought was happening (at a basic level at least). I'd suspect that the combination arithmetic/shift instructions are caused by the same phenomenon... that the PLA is generating control signals for the ALU and shift registers ...
by schidester
Thu Oct 05, 2006 2:39 pm
Forum: Nostalgia
Topic: Chip photo
Replies: 13
Views: 17505

That's a little more detail than the original shot I found!
by schidester
Thu Dec 08, 2005 4:08 pm
Forum: Hardware
Topic: Which is easier to interface to?
Replies: 11
Views: 5167

My project is a little old, and very basic (it was just a hobby board), but it interfaces a 6502 with a 6850. You can't beat the 6850 for simplicity, but the 6551 is definitely better.

Here's the link to the project: http://chidesters.org/scott/meadow/Meadow_6502_SBC_User_Doc.html

(P.S. to the ...
by schidester
Wed Dec 07, 2005 8:09 pm
Forum: Hardware
Topic: Which is easier to interface to?
Replies: 11
Views: 5167

6850

I've had success interfacing and programming a 6850 with a 6502. It was very straightforward. I could show you what I did if you're interested.
by schidester
Thu Nov 11, 2004 3:29 pm
Forum: Hardware
Topic: Adding a 6551 to a C128...
Replies: 13
Views: 5342

Easy

It's TRON.

-Scott
by schidester
Thu Sep 02, 2004 2:21 pm
Forum: Hardware
Topic: 5v Voltage Regultor
Replies: 9
Views: 4358

I have limited experience with the 7805, but I once hooked one up backward. After I inserted it correctly, it output nearly 5V with only the voltmeter loading it, but as soon as I loaded it with anything, the voltage dropped dramatically.
by schidester
Tue Apr 06, 2004 7:00 pm
Forum: Hardware
Topic: Interrupts on a 6502 or 65816
Replies: 10
Views: 5763

Knee-jerk analysis warning...

I'd assume that it would forget the interrupt--remembering it would require the implementation of a flip-flop in the 6502, and it seems like the 6502 is just as simple as it could possibly be. As you said, interrupt sources typically hold the line low until they've ...
by schidester
Fri Mar 26, 2004 4:52 am
Forum: Programming
Topic: JeffSort on the 6502
Replies: 25
Views: 11985

I haven't tried your sort algorithm, I'm only commenting on the O stuff. O(1) I believe would mean that the algorithm takes a fixed amount of time no matter how many elements there are (which, as you might imagine, nobody really talks about because it's silly). O(n) is linear, and O(n^2) is square ...
by schidester
Wed Mar 24, 2004 3:10 pm
Forum: Programming
Topic: BRK detection
Replies: 39
Views: 30021

This BBC handling of error messages seems to agree with the suggestion made earlier that OS calls can be made using the BRK instruction. Apparently the BBC uses an error code following the BRK, which on a different system could just as well be a request for a system service, like using INT 21 in MS ...
by schidester
Mon Mar 08, 2004 3:25 pm
Forum: General Discussions
Topic: 65c02 Emulator
Replies: 11
Views: 7581

I haven't figured out a good or successful way to throttle the CPU to 1/2MHz yet

The best technique is to run, say, 1000 cycles of your simulation, then wait until the next 1ms time.

That sounds obvious, but there are two important things to consider.

First, you should use a blocking function ...
by schidester
Thu Jan 29, 2004 3:18 pm
Forum: Hardware
Topic: Big Flash chip... potential? HELP
Replies: 7
Views: 4186

The short answer is yes. You're probably talking about "writing" the chip once by sticking it in an EPROM programmer, or using JTAG. Under normal operation of the system, it is then feasible to not even allow writes to the chip by physically not connecting the write-enable pins.

As for OSes writing ...
by schidester
Wed Jan 28, 2004 3:34 pm
Forum: Hardware
Topic: Big Flash chip... potential? HELP
Replies: 7
Views: 4186

Flash memory cells can only be written to on the order of 100,000 or 1,000,000 times before they "burn out." This makes them fine for mass storage, such as one would use a hard disk for, but inadequate for RAM, which needs to handle trillions and quadrillions of writes. Flash is also a little slower ...