From f1d8aa8162ec86507293271f1de5020d687414c2 Mon Sep 17 00:00:00 2001 From: cardosorapha Date: Wed, 6 Dec 2023 11:50:41 +0100 Subject: Allowed modification of photodetector noise in the netlist as NOISE_BYPASS and FREQUENCY, fixed comments in parser --- src/parser/parser.l | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/parser/parser.l') diff --git a/src/parser/parser.l b/src/parser/parser.l index ad86569..04a820a 100644 --- a/src/parser/parser.l +++ b/src/parser/parser.l @@ -433,19 +433,19 @@ string convert_special_char(char c) } ^MLPROBE({ALPHA_PLUS_NUM})+ { - /* Probe instance */ + /* Multi-wavelength probe instance */ yylval_param->s_ptr = new string(yytext); return T_ELEM_MLPROBE; } ^PDET({ALPHA_PLUS_NUM})+ { - /* Probe instance */ + /* Photodetector instance */ yylval_param->s_ptr = new string(yytext); return T_ELEM_PDET; } ^PCMCELL({ALPHA_PLUS_NUM})+ { - /* Probe instance */ + /* PCM cell instance */ yylval_param->s_ptr = new string(yytext); return T_ELEM_PCMCELL; } -- cgit v1.2.3