fix typos and improve spaces
This commit is contained in:
parent
c3c2cd53e1
commit
ad1bdfc8b1
|
@ -17,7 +17,7 @@ You'll need to install:
|
||||||
|
|
||||||
# Programming the ULX3S
|
# Programming the ULX3S
|
||||||
```bash
|
```bash
|
||||||
make prog
|
make fpga
|
||||||
# You may need the following line to set your screen device config
|
# You may need the following line to set your screen device config
|
||||||
# to one parity and one stop bit. Tested working on MacOS, should
|
# to one parity and one stop bit. Tested working on MacOS, should
|
||||||
# work on Linux.
|
# work on Linux.
|
||||||
|
|
|
@ -26,8 +26,8 @@ endinterface
|
||||||
module mkTop(ITop);
|
module mkTop(ITop);
|
||||||
Handle fileHandle <- openFile("compile.log", WriteMode);
|
Handle fileHandle <- openFile("compile.log", WriteMode);
|
||||||
IDeserializer # (FCLK, BAUD) deserializer <- mkDeserialize(fileHandle);
|
IDeserializer # (FCLK, BAUD) deserializer <- mkDeserialize(fileHandle);
|
||||||
ISerializer # (FCLK, BAUD) serializer <- mkSerialize(fileHandle);
|
ISerializer # (FCLK, BAUD) serializer <- mkSerialize(fileHandle);
|
||||||
Core # (FCLK) core <- mkCore();
|
Core # (FCLK) core <- mkCore();
|
||||||
|
|
||||||
Reg#(Bit#(8)) ledReg <- mkReg(0);
|
Reg#(Bit#(8)) ledReg <- mkReg(0);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue