Search found 12 matches

by Sprow
Mon Sep 06, 2004 8:39 pm
Forum: Hardware
Topic: Free-ip disappeared
Replies: 4
Views: 5399

Re: Free-ip disappeared

> Anybody knows what happened to > www.free-ip.com (they used to > offer an open source VHDL
> synthesizable model of a 6502
> core)?

There's a copy which I added BCD support to on my website.
http://www.sprow.co.uk/fpgas/

Sprow.
by Sprow
Sat Apr 17, 2004 8:14 am
Forum: Hardware
Topic: clock circuit - how square does it need to be?
Replies: 10
Views: 4889

> Well, you are right with regard to my scope, the fastest I have access to is 200MHz, and it looks fairly sine-ish on it.

Um, you have got all your scope probes compensated for the scope you're using haven't you?
Sprow.
by Sprow
Fri Mar 26, 2004 7:22 pm
Forum: Programming
Topic: JeffSort on the 6502
Replies: 25
Views: 12000

Re: JeffSort on the 6502

> > Saves a couple of cycles
> Thank you for the sugestion, but according to 6502opcodes.htm the 6502 has neither a cpy $xxxx,Y nor a stx ($xx),y instruction as far as I can see...

My brain sort of said that was the case, and the assembler didn't complain when I typed them in in interactive mode ...
by Sprow
Fri Mar 26, 2004 12:54 pm
Forum: Programming
Topic: JeffSort on the 6502
Replies: 25
Views: 12000

Re: JeffSort on the 6502

> After looking at the sorting algorithms in the Source Code Repository I
> was inspired to make a contribution myself. I choose to make an
> implementation of the JeffSort algorithm.

I'll throw in a few free optimisations for you:

ldx #0
fill ;tya
;cmp temp,x
cpy temp,x
beq next
;txa ...
by Sprow
Sun Mar 07, 2004 9:41 am
Forum: General Discussions
Topic: 6502 CMP question
Replies: 2
Views: 3114

Re: 6502 CMP question

> Im programming a 6502 emulator for a NES emulator im making.
> I have the following problem/question regarded de CMP,CPX, CPY Instructions

[Not sure which way]

It's (A-M) and (Y-M) and (X-M),
Sprow.
by Sprow
Tue Feb 03, 2004 10:03 am
Forum: Hardware
Topic: 65C51 in the UK?
Replies: 3
Views: 2694

Re: 65C51 in the UK?

> Does anyone know of a supply of 65C51/6551A's that are available in
> the UK or failing that in Europe?

6551 at Grandata £2.50
6551A at Cricklewood Electronics £4.50

Sprow.
by Sprow
Sat Jan 24, 2004 11:58 am
Forum: Programming
Topic: 4 bit binary coded decimal
Replies: 4
Views: 4455

Re: 4 bit binary coded decimal

> I think that almost every program starts with CLD! Why use binary
> coded decimal representation?

The two most recent applications of BCD I have had were
a) a clock chip whose registers were BCD anyway
b) decoding the modified Julian data passed in the Television Service Data Packet as part of ...
by Sprow
Wed Jan 21, 2004 7:31 pm
Forum: Hardware
Topic: Bios Chips
Replies: 4
Views: 3226

Re: Bios Chips

> Can this be used in a 6502 computer?

Yes

> And if so, what is the upper limit (ie., max amount of memory)?
> Can I use a 1MB chip?
> Could I use one with more memory?

Any size is fine, but since the 6502 only has a 16 bit address bus you'll never be able to see more than 64k at a time - so a ...
by Sprow
Fri Jan 02, 2004 12:12 pm
Forum: Programming
Topic: Using S as extra index register
Replies: 5
Views: 4574

Re: 6502 tips with section about using stack as buffer

Hi,
The '6502_tips.txt' look good,and well worth making public via 6502.org.

However,the "Combining shift register and counter" tip seems to have an excess CLC in there,which seems unnecessary since the LSRA a two instructions later corrupts C anyway.

I'm sure with the "NMOS branch always" tip ...
by Sprow
Fri Nov 14, 2003 12:08 pm
Forum: General Discussions
Topic: Any UK suppliers for the 6502?
Replies: 3
Views: 3308

Any UK suppliers for the 6502?

Me!
Provided by "small" you mean 10's not 100's.
http://www.sprow.co.uk/bbc/forsale.htm

Alternatively,contact me off list and I can probably find someone with some obsolete stock somewhere in the UK,
Sprow.
by Sprow
Thu Oct 23, 2003 4:24 pm
Forum: Hardware
Topic: Video output?
Replies: 147
Views: 64500

Re: Where to purchase STV5730?

Quote:
I'm looking for a company that will sell 1 or 2 STV5730 (or STV5730A). I've found a couple of places but neither has responded to my RFQ


In the UK,STV5730A £5.50 from Grandata Limited in Wembley.
No MOQ.
Sprow.
by Sprow
Thu Oct 23, 2003 9:24 am
Forum: Hardware
Topic: interfacing to a floppy drive?
Replies: 14
Views: 9337

Re: interfacing to a floppy drive?

> Does anyone know of any good, clear, well documented / easy to follow
> references for interfacing with a floppy drive?
>
> I can either do it via compact flash or floppy

Good,clear,and well documented are not usually found in the same sentance as floppy controller datasheets.

There are 3 that I ...