开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Re: A Z80 Asm rec


 

Be careful Lee,? ?all that is going to go straight to my head!

The single step is definitely cool, but as I recall, it was your idea, I just coded it.

For those that don't know it.? Many single step operations write a jump to the next instruction(s) possible to be executed.? This jump returns control to the monitor program.? Ok, it might not exactly be a jump, some use Return, most use the Restart instructions, but it's all the same mechanics.

Lee suggested that the jump be externally generated though the timer interrupt.? In this fashion, it simplifies the need to write a jump into RAM and also permits single stepping through ROM (where you can't temporarily write a jump).? This single step code is in fact within the ISR and it simply wastes exactly the number of cycles so that when the ISR returns to main line code, only 1 instruction can execute before an interrupt brings the CPU back into the ISR.? That's the basic principle, but there's just a little more, a gory detail.??

Gory Details.
The Z80 has variable length instructions, taking between 4 and 17 cycles more or less (check data sheet for exact numbers).? The interrupt works from a counter after 4096 counts I think (that's about 1mSec with a 4Mhz clock).? In order to perfectly align the interrupt for a single instruction, a halt instruction is used to wait for 1 timer interrupt interval before counting out the exact count of cycles.

Cheers,
Josh




On Sunday, May 16, 2021, 02:21:54 a.m. EDT, Lee Hart <leeahart@...> wrote:


joshbensadon via groups.io wrote:
> Bob,
>
> Thanks!? That really means a lot to me!? I just kind of thought nobody
> ever looks at the source code.
>
> The part of the source code I love the most is the full duplex bit
> banged serial I/O.? There's been MANY bit banged I/O routines, but I've
> never seen a full duplex.

Josh's source code is a wonderful example of how to write and document
assembler. It's worth spending some time to read it with careful
concentration on the details.

There are many aspects that I like, but here are a few. One is his
full-duplex interrupt-driven serial I/O routine. Another is his
single-step routine. It can trace a program even through ROM. Yet
another is that it can bit-bang an SD-card, and even figure out the
byzantine PC FAT-16 director structure.

It's a masterpiece! :-)

Lee

--
A designer knows he has achieved perfection not when there is
nothing left to add, but when there is nothing left to take away.
? ? ? ? -- Antoine de Saint Exupery
--
Lee Hart, 814 8th Ave N, Sartell MN 56377, www.sunrise-ev.com

--
This email has been checked for viruses by Avast antivirus software.







Join [email protected] to automatically receive all group messages.