6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Thu Sep 19, 2024 5:22 pm

All times are UTC




Post new topic Reply to topic  [ 5 posts ] 
Author Message
PostPosted: Sun Apr 28, 2013 10:15 am 
Offline

Joined: Sun Apr 28, 2013 10:09 am
Posts: 1
Hi. I need to write a Clock/Stopper/Timer programme in 6502. Clock wasn't that hard but Stopper or Timer is bigger problem. I tried out some ideas but nothing was good enough. Do any of you ever made something like that? Problem is that it has to have possibility to run simultaneous, i.e. You start stopper, change to timer, set it on half an hour, a than turn on clock and everything is working in the background. Please help.


Top
 Profile  
Reply with quote  
PostPosted: Sun Apr 28, 2013 3:41 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8508
Location: Southern California
It sounds like homework, and although we don't totally do homework, we're glad to give some guidance and ideas to get you going. Until we get a little more description of what you need to do, I might suggest having a set of bytes in RAM that get incremented regularly (based on a timer interrupt), and then tap off of that. IOW, if you want splits for example, you copy those RAM bytes to each split and don't actually stop the running of the clock. It's useful to keep the clock running anyway for things like timing key de-bouncing. Just make sure that when you read the clock bytes, you read them twice in a row and compare to make sure the interrupt didn't increment them in the middle. If it did, repeat and again check that you read the same thing twice in a row.

_________________
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?


Top
 Profile  
Reply with quote  
PostPosted: Sun Apr 28, 2013 11:38 pm 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8384
Location: Midwestern USA
As Garth noted, this sounds like a job for interrupts that needs some better explanation—and a solicitation for help with school work. :D

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


Top
 Profile  
Reply with quote  
PostPosted: Mon Apr 29, 2013 4:40 am 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8508
Location: Southern California
Say, that reminds me... :lol: :lol: There's a 6502-oriented article on interrupts at http://6502.org/tutorials/interrupts.html!

I didn't have much time when I wrote my previous post above. I'll expand a bit more here. The clock ISR in that article has both an absolute number of centiseconds (ie, hundredths of seconds, probably the minimum resolution you would want for key de-bouncing), and a time-of-day and calendar section. For all of the embedded applications I've programmed, I used only the absolute incrementer (although it wasn't always exactly centiseconds-- it was often another similar but arbitrary length of time that may have been more suitable for the hardware involved). I did not use any time-of-day and calendar stuff in those applications.

So what you do is have a set of bytes in RAM that gets incremented on a regular basis by an interrupt. That makes for a very simple interrupt-service routine (ISR) that does not even need to use any processor registers. Then the time bytes are always there for anytime you want to refer to them. The following is a slight modification of the listing that's hardly more than halfway down the interrupts-tutorial page:
Code:
INCR10ms: BIT   VIA1T1CL   ; Clear VIA1 interrupt without affecting A.
          INC   cs_32      ; Increment the 4-byte variable cs_32.
          BNE   1$         ; If low byte didn't roll over, skip the rest.
          INC   cs_32+1    ; Else increment the next byte.
          BNE   1$         ; If that one didn't roll over, skip the rest.
          INC   cs_32+2    ; Etc..
          BNE   1$         ; (More than 99.6% of cases will skip out after
          INC   cs_32+3    ;  the first test.)

1$:       RTI              ; End it here if you don't need TOD and calendar.
 ;-----------------

You'll notice that here I used BIT instead of LDA in order to avoid having to save A on the stack since we're not going on to the TOD and calendar portion, and then put the RTI in. I still left four bytes though (hence the "32" in "cs_32", for 32 bits), although it's unlikely you'll need that many.

When you start something you want to time, whether it's a stopwatch, a key de-bounce time, an LED flash time, a time to wait before a key starts its auto-repeat if you hold it down, the repeat rate, etc., etc., you use the one set of time bytes that keeps getting incremented. Every task that needs the time gets it from the same place, and the incrementing of those bytes is always going on, regardless of everything else. It's like many people with different schedules in a room, say at a train station, all looking at the same clock on the wall. (By "task," I'm not necessarily involving a multitasking operating system, so don't panic. It's not that compilcated.)

Your main loop will consist of some number of subroutine calls, and when it gets to the end, it branches back up to the top. It may get through this loop thousands of times per second. Now suppose the first subroutine, ie, task, is watching a pushbutton for when you want to start a stopwatch. If the button is not being pressed, and hasn't been pressed recently (I won't get into de-bouncing here), it just exits, so the program pointer goes on to call the next subroutine. If however it does see the button finally pressed, it grabs the value of the time bytes and stores it in a multi-byte variable that may be used by only that task, and sets a flag variable to mean that the stopwatch is running now. Now a routine can always know how much time has elapsed, by taking the current time minus what it stored. In the case of a stopwatch, the value would get displayed (probably not by the same subroutine). If, OTOH, you wanted to do something X amount of time from when you started, the routine would add that amount of time once and store it, since comparing that result to the current time is more efficient than always subtracting and then seeing if the result means the target amount of time has elapsed, over and over.

Hopefully that's a little more clear than mud. I think giving it a good treatment would take a lot more room and text, plus diagrams and program examples, and patience to read it, too. It seems to come up frequently though, so it's a good thing to discuss, to help many. It would be a good subject for an article. [Edit, 5/15/14: I posted an article on simple methods of doing multitasking without a multitasking OS, at http://wilsonminesco.com/multitask/index.html.]

_________________
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?


Top
 Profile  
Reply with quote  
PostPosted: Mon Apr 29, 2013 4:26 pm 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8384
Location: Midwestern USA
GARTHWILSON wrote:
Say, that reminds me... :lol: :lol: There's a 6502-oriented article on interrupts at http://6502.org/tutorials/interrupts.html!

Complete with outdated cartoons! :lol:

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


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC


Who is online

Users browsing this forum: barnacle and 14 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: