-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdlxos.h
58 lines (43 loc) · 1.27 KB
/
dlxos.h
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
//
// Routines used by the entire operating system.
//
#ifndef _dlxos_h_
#define _dlxos_h_
#include "misc.h"
typedef unsigned int uint32;
#define DLX_PROCESS_QUANTUM 100000 // in microseconds
extern void SetTimer (int);
extern char debugstr[];
#define ASSERT(cond,s) (cond ? 0 : printf ("%s: %s\n", __FUNCTION__,s))
// dbprintf() is a VERY useful macro. It gets used as follows:
// dbprintf ('x', "This prints %d and %x\n", val1, val2);
// This will print the expected string only if the debugging options contain
// the letter 'x'. This allows users to turn on different debugging
// statements at different times by using different letters. For example,
// process debugging statements could use 'p', and memory 'm'. Specifying
// a '+' in the debugging string will turn on all debugging printfs.
#define dbprintf(flag, format, args...) \
if ((dindex(debugstr,flag)!=(char *)0) || \
(dindex(debugstr,'+')!=(char *)0)) { \
printf (format, ## args); \
}
extern int CurrentIntrs ();
extern int SetIntrs (int);
extern void KbdModuleInit ();
extern void intrreturn ();
inline int
DisableIntrs ()
{
return (SetIntrs (0xf));
}
inline int
EnableIntrs ()
{
return (SetIntrs (0x0));
}
inline int
RestoreIntrs (int intrs)
{
return (SetIntrs (intrs));
}
#endif // _dlxos_h_