diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-09-24 00:47:49 -0500 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-09-24 00:47:49 -0500 |
commit | 5088967b9db6e8bcc5feddbea6f53da5b33cb77c (patch) | |
tree | ce3fdd093ebc03548e4a20ec955ed6d8b90c2499 /fpga/src/Util.bs | |
parent | fc1959bd9887ecc4d4ceb62a53e87abc6f49ef00 (diff) |
Another reorg.
Diffstat (limited to 'fpga/src/Util.bs')
-rw-r--r-- | fpga/src/Util.bs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fpga/src/Util.bs b/fpga/src/Util.bs deleted file mode 100644 index ab3074c..0000000 --- a/fpga/src/Util.bs +++ /dev/null @@ -1,7 +0,0 @@ -package Util where - -when_ :: (Monad m) => Bool -> m () -> m () -when_ True x = x -when_ False _ = return () - --- vim: set ft=haskell : |