MCPcopy
hub / github.com/felixrieseberg/windows95 / EmulatorInfoState

Interface EmulatorInfoState

src/renderer/emulator-info.tsx:11–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9}
10
11interface EmulatorInfoState {
12 cpu: number;
13 diskRead: number;
14 diskWrite: number;
15 netRx: number;
16 netTx: number;
17 lastCounter: number;
18 lastTick: number;
19 history: {
20 cpu: number[];
21 diskRead: number[];
22 diskWrite: number[];
23 netRx: number[];
24 netTx: number[];
25 };
26}
27
28const HISTORY_LEN = 30;
29

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected