use const where appropriate

This commit is contained in:
Redo
2022-11-09 13:22:06 -06:00
parent 75299209b8
commit 2389252698
7 changed files with 2544 additions and 47 deletions

View File

@@ -1,10 +1,6 @@
GATEFUNC(Diode) {
setport(2, getport(1));
}
GATEFUNC(Not) {
setport(2, !getport(1));
}
GATEFUNC(Diode) { setport(2, getport(1)); }
GATEFUNC(Not) { setport(2, !getport(1)); }
////