00:00
tpb has quit [Remote host closed the connection]
00:00
tpb has joined #yosys
01:34
cr1901 has quit [Read error: Connection reset by peer]
01:35
cr1901 has joined #yosys
01:53
bl0x has joined #yosys
01:54
bl0x_ has quit [Ping timeout: 246 seconds]
02:37
krispaul has joined #yosys
02:39
kristianpaul has quit [Ping timeout: 255 seconds]
02:52
citypw has joined #yosys
05:36
so-offishul has joined #yosys
05:39
so-offish has quit [Ping timeout: 256 seconds]
06:37
peepsalot has quit [Read error: Connection reset by peer]
06:38
peepsalot has joined #yosys
07:02
kristianpaul has joined #yosys
07:03
krispaul has quit [Ping timeout: 255 seconds]
07:04
kristianpaul has quit [Excess Flood]
07:08
kristianpaul has joined #yosys
09:00
notafile[m] has quit [Quit: You have been kicked for being idle]
09:21
DiffieHellman has quit [Ping timeout: 255 seconds]
09:22
DiffieHellman has joined #yosys
09:38
citypw has quit [Ping timeout: 255 seconds]
11:11
FL4SHK has quit [Ping timeout: 255 seconds]
11:13
FL4SHK has joined #yosys
13:13
DiffieHellman has left #yosys [#yosys]
15:14
so-offish1 has joined #yosys
15:14
so-offish has joined #yosys
15:17
so-offishul has quit [Ping timeout: 250 seconds]
15:18
so-offishul has joined #yosys
15:18
so-offish1 has quit [Ping timeout: 240 seconds]
15:20
so-offish has quit [Ping timeout: 264 seconds]
15:43
so-offishul has quit [Quit: Leaving]
16:48
so-offish has joined #yosys
16:59
<
so-offish >
Got confirmation - there's no DRP on the PLLs of the ECP5.
17:01
<
gatecat >
it's particularly weird when basically any other Lattice FPGA lets you do that too....
17:20
<
so-offish >
Right? Found out how to do it with their other parts; IDK what happened with the ECP5.
21:13
hrberg has quit [Ping timeout: 276 seconds]
22:11
nonchip has joined #yosys
22:51
<
so-offish >
OK! I have a Yosys question
22:52
<
so-offish >
localparam _STYLE = (STYLE == "") ? "block_ram" : STYLE;
22:52
<
so-offish >
/* syn_ramstyle = _STYLE */ reg [WIDTH-1:0] ram [0:SIZE-1];
22:54
<
so-offish >
Does this "style" of using a localparam to then fill in a comment work in Yosys, and how would I check? I dumped the design in Yosys, but where would I check that the localparam was "in effect" (because I don't see it) - does it show up in an attribute for that block?
23:03
<
so-offish >
Shoot it might have just been that it should be this: /* synthesis syn_ramstyle = _STYLE */ reg [WIDTH-1:0] ram [0:SIZE-1]; \
23:07
<
so-offish >
Ahem. I was too early - after synth_ecp5, it shows up just fine. I guess it's processed in that stage, not earlier. Sorry about that; was confused
23:29
<
so-offish >
Yup that appears to work.