fix typos and improve spaces

This commit is contained in:
Yehowshua Immanuel 2023-09-26 00:41:21 -04:00
parent c3c2cd53e1
commit ad1bdfc8b1
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ You'll need to install:
# Programming the ULX3S
```bash
make prog
make fpga
# You may need the following line to set your screen device config
# to one parity and one stop bit. Tested working on MacOS, should
# work on Linux.

View file

@ -26,8 +26,8 @@ endinterface
module mkTop(ITop);
Handle fileHandle <- openFile("compile.log", WriteMode);
IDeserializer # (FCLK, BAUD) deserializer <- mkDeserialize(fileHandle);
ISerializer # (FCLK, BAUD) serializer <- mkSerialize(fileHandle);
Core # (FCLK) core <- mkCore();
ISerializer # (FCLK, BAUD) serializer <- mkSerialize(fileHandle);
Core # (FCLK) core <- mkCore();
Reg#(Bit#(8)) ledReg <- mkReg(0);