jsos
college code for operating system fundamentals in js
git clone https://9o.is/git/jsos.git
interrupt.js
(156B)
1 /* ------------
2 Interrupt.js
3 ------------ */
4
5 function Interrupt(_irq, _params) {
6 // Properties
7 this.irq = _irq;
8 this.params = _params;
9 }