-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVisualizer.h
More file actions
57 lines (50 loc) · 971 Bytes
/
Visualizer.h
File metadata and controls
57 lines (50 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//=======================================
// Multi-level Host Dispatcher
//
// EECE 315 - Project 4
// Group 11
//
// Siddhartha Balasubramanian
// Nabil Lathiff
// Mark Duppenthaler
// Michael Peterson
//=======================================
//=======================================
// Visualizer.h
//=======================================
// Header for state visualizer
//
// Given the instance to a MMU/MLFQ, prints
// out information on to console UI
//
#pragma once
#include "List.h"
#include "MLFQ.h"
#include "ProcMan.h"
#include "MMU.h"
typedef enum
{
BLACK,
RED,
GREEN,
YELLOW,
BLUE,
MAGENTA,
CYAN,
WHITE
} VISCOL;
typedef enum
{
RESET,
BRIGHT,
DIM,
UNDERLINE,
BLINK,
REVERSE,
HIDDEN
} VISSTYLE;
void VisChangeColor(VISCOL colf, VISCOL colb, VISSTYLE style);
void VisResetColor(void);
void VisClearScreen(void);
void VisSetCursorPos(int x, int y);
void VisPrintState(void);