Skip to content

Commit

Permalink
FEAT: allow write action on the console port
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Sep 8, 2023
1 parent 7f5fb87 commit a0ff1bb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/core/p-console.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@
}
return R_RET;

case A_WRITE:
Prin_Value(arg, 0, FALSE, FALSE);
break;

case A_UPDATE:
// do nothing here, no wake-up, events should be handled by user defined port's awake function
// ==>> SYSTEM/PORTS/INPUT/SCHEME/AWAKE
Expand Down

0 comments on commit a0ff1bb

Please sign in to comment.