Fantasy 8Bit system (F8), is a fantasy 8bit console and a set of libraries for creating fantasy 8bit consoles.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
590B

  1. var TickTime = 1000;
  2. var DT = 0;
  3. var LTime = 0;
  4. var CPUCLK = null:
  5. class Clock{
  6. constructor(){}
  7. get hz(){return Math.floor(1000 / TickTime);}
  8. set hz(hz){
  9. if(hz >= 1)
  10. TickTime = 1000 / hz;
  11. }
  12. get wired(){return (CPUCLK !== null);}
  13. set wire(clk){
  14. if(clk == null || typeof clk === 'function')
  15. CPUCLK = clk;
  16. }
  17. tick(){
  18. let ctime = Date.getTime();
  19. if(LTime !== 0){
  20. DT += ctime - LTime;
  21. while(DT > TickTime){
  22. if (CPUCLK)
  23. CPUCLK();
  24. DT -= TickTime
  25. }
  26. }
  27. LTime = ctime;
  28. }
  29. }
  30. module.exports = Clock;