6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Sun May 12, 2024 4:51 pm

All times are UTC




Post new topic Reply to topic  [ 34 posts ]  Go to page 1, 2, 3  Next
Author Message
PostPosted: Sun Nov 03, 2013 10:36 pm 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8180
Location: Midwestern USA
Investigating 65C816 Interrupts. Also linked at Garth Wilson's website on his Links page.

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
PostPosted: Mon Nov 04, 2013 7:49 pm 
Offline

Joined: Mon Jan 07, 2013 2:42 pm
Posts: 576
Location: Just outside Berlin, Germany
Wow. I guess that's my evening's reading. Thanks for all the work!


Top
 Profile  
Reply with quote  
PostPosted: Mon Nov 04, 2013 9:36 pm 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8180
Location: Midwestern USA
scotws wrote:
Wow. I guess that's my evening's reading. Thanks for all the work!

You're welcome. :)

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
PostPosted: Tue Nov 05, 2013 8:41 am 
Offline

Joined: Mon Jan 07, 2013 2:42 pm
Posts: 576
Location: Just outside Berlin, Germany
Quote:
The abort interrupt is used in systems that have specialized memory management logic to cope with unusual hardware conditions that may arise during program execution.

At the risk of exposing even more of my happy ignorance in these matters -- I had always assumed, though without thinking about, that ABORT would be used in a multitasking context, not so much for memory management: A clock signal asserts ABT in regular intervals, and the CPU tears the process away from what it is doing with a cry of (insert Soup Nazi accent) "No cycles for you!"

Given the high priority of ABORT (just below RESET, but above IRQ), would this still be possibility? I know the 65816 is not really made for serious multitasking -- no protected mode, for one -- but whereas memory stuff would need a MMU ("the required hardware logic" as I understand from the text), what else would you need for preemptive multitasking, however primitive?

Thanks again for the text, I learned a lot. The second computer will definitely be a '816.


Top
 Profile  
Reply with quote  
PostPosted: Tue Nov 05, 2013 4:28 pm 
Offline
User avatar

Joined: Sun Jun 30, 2013 10:26 pm
Posts: 1929
Location: Sacramento, CA, USA
Thanks for a nice write-up BDD!

I stumbled across a small typo ... do a search for "already be discussed" and you'll find it.

Since you are a hardware and software guy with a lot of experience, can you provide me with any insight with regards to the edge-sensitive behavior of NMI? Why isn't it just like IRQB? It seems to me that it would be potentially more useful that way, but there could be a good reason that it is not, that I simply don't understand.

Mike

[Edit: Upon further thought, I guess that the hardware triggering the NMI would have to be designed in such a manner as to be able to de-assert itself, since the software wouldn't be able to do so, or make any headway otherwise. In that light, it would be more related to RESETB than IRQB, but could still have some interesting synchronization uses.]


Top
 Profile  
Reply with quote  
PostPosted: Tue Nov 05, 2013 6:45 pm 
Offline
User avatar

Joined: Mon Dec 08, 2008 6:32 pm
Posts: 143
Location: Brighton, England
NMI is edge-triggered for a simple reason. If it were level-triggered, the NMI interrupt would immediately re-interrupt its own service routine after the service routine had executed its first instruction. This process would continue over and over again, locking the machine into an endless loop as the service routine would not be processed to the point where it could disable the interrupt source!

_________________
Shift to the left,
Shift to the right,
Mask in, Mask Out,
BYTE! BYTE! BYTE!


Top
 Profile  
Reply with quote  
PostPosted: Tue Nov 05, 2013 7:04 pm 
Offline

Joined: Mon Mar 02, 2009 7:27 pm
Posts: 3258
Location: NC, USA
In hardware (verilog), edge-trigger makes a FF, like a 74374. A level-trigger makes a latch like a 74373.
I remember on the C-64, the certain combination keypress would trigger an NMI 'master' interrupt. IRQ's were a lesser priority.

_________________
65Org16:https://github.com/ElEctric-EyE/verilog-6502


Top
 Profile  
Reply with quote  
PostPosted: Tue Nov 05, 2013 11:23 pm 
Offline
User avatar

Joined: Sun Jun 30, 2013 10:26 pm
Posts: 1929
Location: Sacramento, CA, USA
PaulF wrote:
... process would continue over and over again, locking the machine into an endless loop as the service routine would not be processed to the point where it could disable the interrupt source!


... hence my edit admitting/implying that extra hardware handshaking would be necessary. Thinking about it further, I suppose that the three original 6502 vector-invoking inputs all had different protocols to provide the best mix of options for the hardware of the time, and my initial post here is starting to look a bit silly. :roll:

Mike


Top
 Profile  
Reply with quote  
PostPosted: Wed Nov 06, 2013 2:19 am 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8180
Location: Midwestern USA
PaulF wrote:
NMI is edge-triggered for a simple reason. If it were level-triggered, the NMI interrupt would immediately re-interrupt its own service routine after the service routine had executed its first instruction. This process would continue over and over again, locking the machine into an endless loop as the service routine would not be processed to the point where it could disable the interrupt source!

Paul saved me the trouble of explaining. :lol:

My earliest recollection of the use of NMI was on an ancient BASIC Four mini from the early 1970s, which received its power from a humongous UPS. When the power failed the UPS had a set of contacts that would close and pull an input on the mini to ground if power remained off for more than 10 minutes. That turned out to be an NMI that directed the computer to shut itself down. Obviously, as Paul described, if the NMI had been level-sensitive the interrupt would have kept interrupting and the shutdown would not have happened.

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Last edited by BigDumbDinosaur on Wed Nov 06, 2013 3:05 am, edited 1 time in total.

Top
 Profile  
Reply with quote  
PostPosted: Wed Nov 06, 2013 2:21 am 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8180
Location: Midwestern USA
barrym95838 wrote:
Thanks for a nice write-up BDD!

You're welcome.

Quote:
I stumbled across a small typo ... do a search for "already be discussed" and you'll find it.

Fixed. Why is it the computer won't type what I'm thinking when I'm writing this stuff? :evil:

Quote:
Since you are a hardware and software guy with a lot of experience, can you provide me with any insight with regards to the edge-sensitive behavior of NMI? Why isn't it just like IRQB? It seems to me that it would be potentially more useful that way, but there could be a good reason that it is not, that I simply don't understand.

Paul explained.

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
PostPosted: Wed Nov 06, 2013 2:53 am 
Offline

Joined: Sun Jul 28, 2013 12:59 am
Posts: 235
BigDumbDinosaur wrote:
Why is it the computer won't type what I'm thinking when I'm writing this stuff? :evil:


Because automatic spelling correction is more than aggravating enough to a fast typist who learned to type without it (or possibly even with it). Automatic grammar correction would just lead to utter gibberish when faced with someone who types three or four words before they realize that they messed up, sometimes completing a sentence that then gets auto-corrected, yet still knowing exactly how many times to hit backspace to return to where they made the mistake so that they can correct it, only making the problem worse because not only has the computer changed what was typed, but it changed it to make even less sense. The better approach would be to somehow highlight sentences (or parts thereof) that the computer thinks are somehow wrong.

Oh, wait, was that meant to be rhetorical? My bad. :oops:


Top
 Profile  
Reply with quote  
PostPosted: Wed Nov 06, 2013 2:59 am 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8180
Location: Midwestern USA
scotws wrote:
Quote:
The abort interrupt is used in systems that have specialized memory management logic to cope with unusual hardware conditions that may arise during program execution.

At the risk of exposing even more of my happy ignorance in these matters -- I had always assumed, though without thinking about, that ABORT would be used in a multitasking context, not so much for memory management: A clock signal asserts ABT in regular intervals, and the CPU tears the process away from what it is doing with a cry of (insert Soup Nazi accent) "No cycles for you!"

Given the high priority of ABORT (just below RESET, but above IRQ), would this still be possibility?

The high priority of ABORTB, which is a non-maskable interrupt, would create intractable problems if used as a task switching mechanism. Suppose the following code (an excerpt from the DUART driver code in POC V1.1's interrupt handler) is being executed:
Code:
.iirq070 bit #u92atirq         ;transmitter interrupting?
         beq .iirq110          ;no, goto next channel
;
         ldx e32tixga          ;buffer "get" index
;
.iirq080 cpx e32tixpa          ;buffer "put" index
         beq .iirq090          ;no data in buffer
;
         lda sr_92a            ;channel A status
         bit #u92txdr          ;FIFO full?  <————————————— ABORTB IS ASSERTED HERE
         beq .iirq100          ;yes, defer next datum
;
         lda e32bufta,x        ;no, get datum from buffer &...
         sta txd_92a           ;write to FIFO
         txa                   ;current buffer position
         ina                   ;new buffer position
         and #e32xmask         ;deal with wrap
         sta e32tixga          ;set next position
         tax
         bra .iirq080          ;send another byte

and let's suppose that just as the bit #u92txdr instruction is being executed ABORTB is toggled because it's time to switch tasks. What do you think would happen when the MPU resumed execution at that instruction? Consider that "aborting" an instruction causes the 65C816 to discard computational results.

Quote:
I know the 65816 is not really made for serious multitasking -- no protected mode, for one -- but whereas memory stuff would need a MMU ("the required hardware logic" as I understand from the text), what else would you need for preemptive multitasking, however primitive?

In that paragraph in my article, "required hardware logic" actually refers to whatever is needed to create a protected mode environment, not just the logic needed to generate the A16-A23 address component.

Oddly enough, preemptive multitasking doesn't required a protected environment. The first generation Commodore Amiga, which was powered by the MC68000, had no memory protection whatsoever, yet was a preemptive multitasking machine. However, the MC68000 does have "user" and "supervisor" modes. Therefore, as long as a user-written program wasn't allowed to wedge into the interrupt system, supervisor mode instructions could not be executed, which made it difficult, but not impossible, for one program to step on something that it shouldn't.

Later Amigas made use of the MC68851 MMU and then the 68030 and 68040 MPUs to implement a virtual memory system that created a true protected environment.

It can be done with the 65C816 by using complex logic to police memory accesses, instruction fetches and such. It's not simple.

Quote:
Thanks again for the text, I learned a lot. The second computer will definitely be a '816.

The ability to do 16 bit loads, stores and arithmetic with a single instruction is compelling in itself. The stack functions however, are the icing on the cake.

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
PostPosted: Wed Nov 06, 2013 3:04 am 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8180
Location: Midwestern USA
ElEctric_EyE wrote:
I remember on the C-64, the certain combination keypress would trigger an NMI 'master' interrupt. IRQ's were a lesser priority.

That was the STOP-Restore combination. The Restore key on the C-64 had to whacked to get the desired effect. The result culminated in a jump to BASIC's cold start vector.

CIA #2 was also wired to NMI, as that was how the fake RS-232 functions came about. Looking back at it, it was a house of cards, but worked reasonably well.

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
PostPosted: Wed Nov 06, 2013 3:07 am 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8180
Location: Midwestern USA
nyef wrote:
BigDumbDinosaur wrote:
Why is it the computer won't type what I'm thinking when I'm writing this stuff? :evil:

Because automatic spelling correction is more than aggravating enough to a fast typist who learned to type without it (or possibly even with it). Automatic grammar correction would just lead to utter gibberish when faced with someone who types three or four words before they realize that they messed up, sometimes completing a sentence that then gets auto-corrected, yet still knowing exactly how many times to hit backspace to return to where they made the mistake so that they can correct it, only making the problem worse because not only has the computer changed what was typed, but it changed it to make even less sense. The better approach would be to somehow highlight sentences (or parts thereof) that the computer thinks are somehow wrong.

Oh, wait, was that meant to be rhetorical? My bad. :oops:

I do use spell checking, since it catches typos. I would never consider using grammar correction. How would the machine know what I was thinking? Sometimes I don't even know what I'm thinking. :?

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
PostPosted: Wed Nov 06, 2013 3:16 am 
Offline
User avatar

Joined: Sun Jun 30, 2013 10:26 pm
Posts: 1929
Location: Sacramento, CA, USA
RE: NMI. Not to beat a dead horse, but what I'm envisioning is a device that needs to be serviced with an understandable delay, but with no jitter. I don't know if there are devices out there with synchronization needs that are so strict, but if one did exist, it could assert NMI and hold it long enough to guarantee that the processor had finished the current instruction, stacked the state, and loaded the NMI vector into PC. It would then release NMI and 'know' that the ISR would begin execution with EXACT timing precision. It would be kind of like a reset, but with an RTI available. Or like a hardware-triggered version of WAI. Am I making any sense?

Mike


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 34 posts ]  Go to page 1, 2, 3  Next

All times are UTC


Who is online

Users browsing this forum: No registered users and 12 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to: