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 ...
Search found 57 matches
- Fri Apr 18, 2014 9:01 pm
- Forum: General Discussions
- Topic: Using TiddlyWiki to document projects
- Replies: 14
- Views: 1357
- 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
http://chidesters.org/scott/meadow/Mead ... r_Doc.html
- 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:


- 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 ...
- Thu Oct 05, 2006 2:39 pm
- Forum: Nostalgia
- Topic: Chip photo
- Replies: 13
- Views: 17505
- Thu Dec 08, 2005 4:08 pm
- Forum: Hardware
- Topic: Which is easier to interface to?
- Replies: 11
- Views: 5167
- 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.
- 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
-Scott
- Thu Sep 02, 2004 2:21 pm
- Forum: Hardware
- Topic: 5v Voltage Regultor
- Replies: 9
- Views: 4358
- Tue Apr 06, 2004 7:00 pm
- Forum: Hardware
- Topic: Interrupts on a 6502 or 65816
- Replies: 10
- Views: 5763
- 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 ...
- 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 ...
- Mon Mar 08, 2004 3:25 pm
- Forum: General Discussions
- Topic: 65c02 Emulator
- Replies: 11
- Views: 7581
- 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 ...
As for OSes writing ...
- 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 ...