s502 assembler
A very simple assembler for the 6502 line of processors written in C
src
logging.c
Go to the documentation of this file.
1
6
int
logging_level
(
int
level) {
7
static
int
current;
8
if
(current == 0) {
9
current = 1;
10
}
11
if
(level == 0)
return
current;
12
return
current = level;
13
}
logging_level
int logging_level(int level)
pseudo-global accessor
Definition:
logging.c:6
Generated by
1.8.20