Skip to content

Commit cbd6a2f

Browse files
committed
man: Add references to logic(9)
1 parent 44a8f32 commit cbd6a2f

3 files changed

Lines changed: 30 additions & 0 deletions

File tree

src/hal/components/and2.comp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ Otherwise,
1313
.RE"""
1414
;
1515
function _ nofp;
16+
see_also """
17+
.ie '\\*[.T]'html' \\{\\
18+
.UR logic.9.html
19+
\\fBlogic\\fR(9)
20+
.UE
21+
\\}
22+
.el \\{\\
23+
\\fBlogic\\fR(9)
24+
\\}
25+
""";
1626
license "GPL";
1727
;;
1828
FUNCTION(_) { out = in0 && in1; }

src/hal/components/or2.comp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ Otherwise,
1414
.RE"""
1515
;
1616
function _ nofp;
17+
see_also """
18+
.ie '\\*[.T]'html' \\{\\
19+
.UR logic.9.html
20+
\\fBlogic\\fR(9)
21+
.UE
22+
\\}
23+
.el \\{\\
24+
\\fBlogic\\fR(9)
25+
\\}
26+
""";
1727
license "GPL";
1828
;;
1929
FUNCTION(_) { out = in0 || in1; }

src/hal/components/xor2.comp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ to the following rule:
1414
Otherwise,
1515
\\fBout=FALSE\\fR""";
1616
function _ nofp;
17+
see_also """
18+
.ie '\\*[.T]'html' \\{\\
19+
.UR logic.9.html
20+
\\fBlogic\\fR(9)
21+
.UE
22+
\\}
23+
.el \\{\\
24+
\\fBlogic\\fR(9)
25+
\\}
26+
""";
1727
license "GPL";
1828
;;
1929
FUNCTION(_) {

0 commit comments

Comments
 (0)