2019-02-06 10:40:55 +01:00
|
|
|
Verilog implementation of the HP saturn processor
|
|
|
|
|
2019-02-07 08:35:59 +01:00
|
|
|
licence: GPLv3 or later
|
|
|
|
|
|
|
|
|
|
|
|
timings:
|
2019-03-02 17:06:23 +01:00
|
|
|
```
|
2019-02-11 19:24:57 +01:00
|
|
|
___________
|
|
|
|
reset: |____________________________________________________
|
|
|
|
____ ____ ____ ____ ____ ____
|
|
|
|
clk : ____| |____| |____| |____| |____| |____| |____
|
|
|
|
_________ _________ _________ _________ _________
|
|
|
|
counter: ______________/____0____X____1____X____2____X____3____X____0____
|
|
|
|
_________ _________
|
|
|
|
phase_0: ______________| |_____________________________|
|
2019-02-11 16:58:15 +01:00
|
|
|
_________
|
2019-02-11 19:24:57 +01:00
|
|
|
phase_1: ________________________| |_____________________________
|
2019-02-11 16:58:15 +01:00
|
|
|
_________
|
2019-02-11 19:24:57 +01:00
|
|
|
phase_2: __________________________________| |___________________
|
|
|
|
_________
|
2019-02-14 22:14:52 +01:00
|
|
|
phase_3: ____________________________________________| |_________
|
2019-03-02 17:06:23 +01:00
|
|
|
```
|
2019-02-14 22:14:52 +01:00
|
|
|
|
|
|
|
notes for using the ULX3S
|
|
|
|
|
|
|
|
Maybe linux ujprog won't find port because of insufficient priviledge. Either run ujprog as root or have udev rule:# this is for usb-serial tty device
|
|
|
|
SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6015", \
|
|
|
|
MODE="664", GROUP="dialout"
|
|
|
|
this is for ujprog libusb access
|
|
|
|
|
|
|
|
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6015", \
|
2019-02-18 11:36:28 +01:00
|
|
|
GROUP="dialout", MODE="666"
|
|
|
|
|