We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cc80a0 commit 5d2787eCopy full SHA for 5d2787e
src/crtc.c
@@ -28,7 +28,7 @@ static uint8_t regs[CRTC_REGISTER_COUNT];
28
#define REG_CURSOR_L 15
29
#define REG_LIGHT_PEN_H 16
30
#define REG_LIGHT_PEN_L 17
31
-unsigned int rselect = 0; // current register selected
+static unsigned int rselect = 0; // current register selected
32
33
#define CRTC_NOT_IMPLEMENTED_STR "not implemented\n"
34
src/upd8255.c
@@ -15,7 +15,7 @@
15
#define UPD8255_PORTC_REG 2
16
17
#define UPD8255_PORTS_COUNT 3
18
-uint8_t port[UPD8255_PORTS_COUNT];
+static uint8_t port[UPD8255_PORTS_COUNT];
19
#define UPD8255_CONTROL_REG 3
20
21
#define UPD8255_REG_COUNT 4
0 commit comments