diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-09-24 01:15:15 -0500 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-09-24 01:15:15 -0500 |
commit | 0b243018d200e22dd088e79d61b06aaf64bbe4c2 (patch) | |
tree | 74cc58e1acb13a92df6b98043ed4013ab7204975 /fpga/src/CPU.bs | |
parent | 5088967b9db6e8bcc5feddbea6f53da5b33cb77c (diff) |
Fix echo.
Diffstat (limited to 'fpga/src/CPU.bs')
-rw-r--r-- | fpga/src/CPU.bs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga/src/CPU.bs b/fpga/src/CPU.bs index 566ae92..ec81778 100644 --- a/fpga/src/CPU.bs +++ b/fpga/src/CPU.bs @@ -10,7 +10,7 @@ interface CPU = mkCPU :: Module CPU mkCPU = module - byte :: Reg (Bit 8) <- mkReg 0 + byte :: Wire (Bit 8) <- mkWire interface CPU uart_tx = toGet byte |