Dr. Fiemost 2017-01-17 20:53:44 +01:00
parent 4142ac152e
commit aed0d9a3c3
1 changed files with 5 additions and 6 deletions

View File

@ -615,12 +615,11 @@ stabilizeChip(state_t *state)
void
setNode(state_t *state, nodenum_t nn, BOOL s)
{
BOOL oldstate = get_nodes_pullup(state, nn);
if (s != oldstate) {
set_nodes_pullup(state, nn, s);
set_nodes_pulldown(state, nn, !s);
listout_add(state, nn);
}
set_nodes_pullup(state, nn, s);
set_nodes_pulldown(state, nn, !s);
listout_add(state, nn);
recalcNodeList(state);
}
BOOL