Search found 29 matches

by JamesD
Fri Jul 03, 2009 5:38 pm
Forum: Dragon General
Topic: Dragon survey, what to ask for?
Replies: 102
Views: 51275

Re: Dragon survey, what to ask for?

The January 1984 issue of Color Computer Magazine has a pretty good picture of the Tano Dragon insides. It's probably just a Dragon 64 clocked for NTSC.
I like the board layout better than the CoCo.

Too bad they didn't socket the RAM, 6847 or PIAs.
by JamesD
Sun Jun 28, 2009 4:19 pm
Forum: Dragon General
Topic: Detecting CPU type?
Replies: 1
Views: 1789

Re: Detecting CPU type?

The 6309 has functional differences so it's easy to detect. The A09 and B09 are the same functionally so I don't think there is any way to detect them in software.
by JamesD
Fri Jun 26, 2009 2:43 am
Forum: Dragon General
Topic: Double Speed?
Replies: 57
Views: 30956

Re: Double Speed?

My Tano Dragon has a 783.
by JamesD
Thu Jun 25, 2009 5:52 am
Forum: Dragon General
Topic: Double Speed?
Replies: 57
Views: 30956

Re: Double Speed?

Looks to me like it only needs to refresh 128 addresses.
by JamesD
Wed Jun 24, 2009 5:09 pm
Forum: Dragon General
Topic: Double Speed?
Replies: 57
Views: 30956

Re: Double Speed?

Ok, back to the RAM refresh. So, 8 consecutive addresses until 256 have been processed? So that would be done in the first 32 scanlines of the display during the border draw.
<edit>
I'm guessing the SAM is triggering the 2nd RAM bank for half of that 256.
by JamesD
Wed Jun 24, 2009 5:05 pm
Forum: Dragon General
Topic: Double Speed?
Replies: 57
Views: 30956

Re: Double Speed?

The CoCo 2 (or at least some of them) use the x 4 RAM chips.
by JamesD
Wed Jun 24, 2009 9:10 am
Forum: Dragon General
Topic: Double Speed?
Replies: 57
Views: 30956

Re: Double Speed?

The 2nd paragraph on the datasheet has the answer to the 64K RAM question. However I think the 256 column refresh came sooner in a version of the MC6883. The SN74LS783/MC6883 is designed to support 4K x 1, 16K x 1 and 64K x 1 (128 column refresh) dynamic RAMs. The SN74LS785 has been modified to supp...
by JamesD
Tue Jun 23, 2009 5:19 am
Forum: Dragon General
Topic: Double Speed?
Replies: 57
Views: 30956

Re: Double Speed?

Well, if that won't work then I guess there's no choice but to let the hardware do it.
by JamesD
Tue Jun 23, 2009 4:04 am
Forum: Dragon General
Topic: Double Speed?
Replies: 57
Views: 30956

Re: Double Speed?

Well, then it's not pages so mine won't work no matter what. It would have to be consecutive addresses and mine wasn't. In that case it would actually be easier. No ABX, just auto increment and we could use D. I don't know if you'd need to do this every interrupt or not. 20 LDX RefreshAdd 30 LDD ,X+...
by JamesD
Mon Jun 22, 2009 1:55 pm
Forum: Dragon General
Topic: Double Speed?
Replies: 57
Views: 30956

Re: Double Speed?

I had thought that something like this would do the job... 10 ORG $5000 20 LDX #0 30 LDA ,-X 40 LOOP LEAX 256,X 50 LDA ,X 60 CMPX #$7FFF 70 BNE LOOP 70 JMP $9D3D Isn't this doing exactly what the hardware refresh does? If a page size is 256 bytes then that would do the trick (why decrement X and LE...