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.
|
-
- var TickTime = 1000;
- var DT = 0;
- var LTime = 0;
- var CPUCLK = null:
-
- class Clock{
- constructor(){}
-
- get hz(){return Math.floor(1000 / TickTime);}
- set hz(hz){
- if(hz >= 1)
- TickTime = 1000 / hz;
- }
-
- get wired(){return (CPUCLK !== null);}
- set wire(clk){
- if(clk == null || typeof clk === 'function')
- CPUCLK = clk;
- }
-
- tick(){
- let ctime = Date.getTime();
- if(LTime !== 0){
- DT += ctime - LTime;
- while(DT > TickTime){
- if (CPUCLK)
- CPUCLK();
- DT -= TickTime
- }
- }
- LTime = ctime;
- }
- }
-
-
- module.exports = Clock;
|