Search found 12 matches

by phillhs
Tue Aug 04, 2015 8:33 am
Forum: General Discussions
Topic: Simple 6502 monitor
Replies: 13
Views: 14174

Re: Simple 6502 monitor

Hi all,

Thanks for the replies, in the end I went with Daryl's cut down SBCOS files, as they where easy to re-target and did what I needed.

Cheers.

Phill.
by phillhs
Mon Aug 03, 2015 3:30 pm
Forum: General Discussions
Topic: Simple 6502 monitor
Replies: 13
Views: 14174

Simple 6502 monitor

Hi all,

Is there a simple 6502 monitor available (as source code) that has the following features....

Must be 4K or less.
Must be able to examine and dump memory, not interested in being able to assemble / disassemble.

The target system (Acorn System 5 clone), will be able to supply routines for ...
by phillhs
Wed Jun 12, 2013 8:28 am
Forum: General Discussions
Topic: Sync behavior
Replies: 8
Views: 2726

Re: Sync behavior

flag that is if the last instruction was fetched from this address range Funky! Thanks for sharing that. Do we know what's driven by the flipflop -- where Q goes, what it does? A timing thing, perhaps, controlling wait states? Or altering the presence of IO devices in the memory map? In support of ...
by phillhs
Wed Jun 12, 2013 12:31 am
Forum: General Discussions
Topic: Sync behavior
Replies: 8
Views: 2726

Re: Sync behavior


Hi, Phill. Yes, that's right -- you've got the idea. SYNC will be asserted while $A9 (the opcode for LDA#) is fetched. It will be deasserted on the following cycle when the $21 is fetched.

Right, good to have it confirmed to be good, that's what I though the data sheet meant, but thought I'd ...
by phillhs
Tue Jun 11, 2013 11:08 pm
Forum: General Discussions
Topic: Sync behavior
Replies: 8
Views: 2726

Sync behavior

Just want to try and clarify something, on the WD65c02 data sheet it says :

"The OpCode fetch cycle of the microprocessor instruction is indicated with SYNC high. The SYNC output is provided to identify those cycles during which the microprocessor is fetching an OpCode. The SYNC line goes high ...
by phillhs
Sun May 26, 2013 4:06 pm
Forum: Hardware
Topic: Testing a WDC 65C02 with some Commodore PETs..
Replies: 30
Views: 12825

Re: Testing a WDC 65C02 with some Commodore PETs..

Sorry for resurrecting a topic that's over a year old....

Did you ever work out what the problem was using the WD65c02 chip in the PET ?

It seems odd that it won't work, as I've used it successfully in a BBC micro and an Acorn Atom which are of similar vintage and use similar LS chips.

But when I ...
by phillhs
Thu Feb 05, 2009 8:16 pm
Forum: General Discussions
Topic: WDC 6502
Replies: 4
Views: 3870

WDC 6502

Hi,

Does anyone know a re-seller who sells WDC 6502s, 6522s etc in the UK ?

Cheers.

Phill.
by phillhs
Thu Dec 04, 2008 10:42 am
Forum: EhBASIC
Topic: How to build.....
Replies: 3
Views: 6146

You can assemble in the simulator and save an image of the memory, that's what I do.

Yeah I eventually worked out how to do that :)

However as a more perminent solution I converted the code (via a conversion program, written in delphi), to assemble with BeebAsm, as this is what I was using for ...
by phillhs
Sat Nov 29, 2008 6:34 am
Forum: EhBASIC
Topic: How to build.....
Replies: 3
Views: 6146

How to build.....

Hi,

What assembler should I use to build EhBasic if not using the simulator ?

Cheers.

Phill.
by phillhs
Fri Nov 28, 2008 1:27 pm
Forum: Hardware
Topic: 65SPI
Replies: 115
Views: 79801

but since they have RS232 to USB, that would be redundant and trivial.
They also have SPI to USB, so if your microcontroller or home-made computer has SPI, you can get USB with one IC. There are probably more of these and cheaper too, since SPI is a better match speedwise than RS-232 is.

There's ...
by phillhs
Sun Nov 23, 2008 11:47 pm
Forum: General Discussions
Topic: Help i need to create a program and i dont know how
Replies: 25
Views: 11053

Nightmaretony wrote:
shit the bit across multiple screen locations in a smooth scroll.
I'm sure you mean SHIFT the bit :) :) :)

Phill.
by phillhs
Sun Nov 23, 2008 2:48 pm
Forum: General Discussions
Topic: Correct read/write strobe generation
Replies: 2
Views: 4426

Correct read/write strobe generation

Hi people,

Browsing around this site (and the projects linked off it), I have seen two ways of generating Intel like /RD and /WR strobes the most common seems to consist of 3 NAND gates that generate /RD and /WR such that

/RD = R/W NAND PHI2
/WR = (NOT R/W) NAND PHI2

I have also seen a circuit ...