summaryrefslogtreecommitdiff
path: root/src/peripherals/avrdx-wdt.ts
blob: 15b1db06b7ff9b6c55b1041d0ab3fa9829322700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// AVR-Dx SLPCTRL - Sleep Controller
// Handles the SLEEP instruction by fast-forwarding to the next clock event.

import type { CPU } from 'avr8js/cpu/cpu';

// const CTRLA = 0;
// const STATUS = 1;

export class AVRDxWDT {
  constructor(cpu: CPU, base: number) {
  }
}