HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
Main Page
Related Pages
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
_
a
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
Typedefs
b
c
d
f
g
i
l
m
n
o
p
r
s
t
u
w
Enumerations
Enumerator
a
c
e
f
g
i
n
p
r
s
t
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
w
x
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
hardware
bits.h
Go to the documentation of this file.
1
13
#ifndef _BITS_H_
14
#define _BITS_H_
15
17
#define BIT_SET(x,y) (x |= (1 << (y)))
18
#define BIT_CLR(x,y) (x &= ~(1 << (y)))
19
#define BIT_TST(x,y) ((x & (1 << (y))) ? (int) 1 : (int) 0)
20
21
#ifdef AVR
22
#define BIT0 0
23
#define BIT1 1
24
#define BIT2 2
25
#define BIT3 3
26
#define BIT4 4
27
#define BIT5 5
28
#define BIT6 6
29
#define BIT7 7
30
31
#define BIT8 8
32
#define BIT9 9
33
#define BIT10 10
34
#define BIT11 11
35
#define BIT12 12
36
#define BIT13 13
37
#define BIT14 14
38
#define BIT15 15
39
#endif // AVR
40
#endif // ifndef _BITS_H_
Generated on Wed Apr 13 2022 21:56:48 for HP85 GPIB Disk Emulator by
1.8.17