tpb has quit [Remote host closed the connection]
tpb has joined #symbiflow
_whitelogger has joined #symbiflow
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #symbiflow
rvalles has quit [Ping timeout: 240 seconds]
rvalles has joined #symbiflow
maartenBE has quit [Ping timeout: 264 seconds]
maartenBE has joined #symbiflow
Vonter has joined #symbiflow
Vonter has quit [Max SendQ exceeded]
Vonter has joined #symbiflow
Degi has quit [Ping timeout: 260 seconds]
Degi has joined #symbiflow
futarisIRCcloud has quit [Quit: Connection closed for inactivity]
m_hackerfoo has quit [Quit: killed]
HackerFoo has quit [Quit: killed]
m_hackerfoo has joined #symbiflow
HackerFoo has joined #symbiflow
enriq has joined #symbiflow
enriq has quit [Client Quit]
OmniMancer has joined #symbiflow
citypw has joined #symbiflow
enriq has joined #symbiflow
enriq has quit [Client Quit]
az0re has quit [Remote host closed the connection]
enriq has joined #symbiflow
enriq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enriq has joined #symbiflow
krogozinski_ has joined #symbiflow
krogozinski_ has quit [Client Quit]
krogozinski has quit [Ping timeout: 258 seconds]
krogozinski has joined #symbiflow
enriq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enriq has joined #symbiflow
enriq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enriq has joined #symbiflow
enriq has quit [Client Quit]
enriq has joined #symbiflow
enriq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enriq has joined #symbiflow
enriq has quit [Client Quit]
enriq has joined #symbiflow
epony has quit [Quit: upgrades]
epony has joined #symbiflow
enriq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enriq has joined #symbiflow
ademski has joined #symbiflow
futarisIRCcloud has joined #symbiflow
enriq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enriq has joined #symbiflow
enriq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
citypw has quit [Ping timeout: 240 seconds]
enriq has joined #symbiflow
OmniMancer has quit [Quit: Leaving.]
<sf-slack> <mbpeterson70> I'm new to fasm2bels and trying to get it running, and the few design/parts I've tried running it on gives me a tcl script with "set route "[list ] " and then "set_property FIXED_ROUTE $route $net" at the end of the script. Vivado keeps complaining about the set_property line needing at least one object. The tcl script seems to run fine when I get rid of the line, but I'm wondering if this is something I should
<sf-slack> create an issue about, look into more, or am I just doing something wrong?
QDX45 has quit [Read error: Connection reset by peer]
az0re has joined #symbiflow
enriq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ademski has quit [Ping timeout: 246 seconds]
ademski has joined #symbiflow
ademski has quit [Ping timeout: 246 seconds]
FFY00 has quit [Read error: Connection reset by peer]
FFY00 has joined #symbiflow
Vonter has quit [Read error: Connection reset by peer]
Vonter has joined #symbiflow
<litghost> mbpeterson70: That indicates there is a net with nothing on it, which is pretty weird
<litghost> mbpeterson70: To make the xdc output more robust, you could change the output to be `set_property FIXED_ROUTE "$route" $net`, which works even if $route is ""
<litghost> mbpeterson70: But there is likely a lurking bug in the fact that the net has no nodes on it
<sf-slack> <mbpeterson70> @litghost: Hmm I tried that and Vivado still wasn't able to get over that line.
<litghost> mbpeterson70: What is "$net" in this case? If that is also empty, that is the "real" issue, but the whole thing smells like a bg
<litghost> bug
<sf-slack> <mbpeterson70> @litghost: Yes, I think you're right. The line above that: `set net [get_nets {<const0>}]` . There was a couple other things that looked odd that I sent to you on a direct message.
<litghost> mbpeterson70: So the constant nets are important to preserving the exact routing into Vivado. I find it basically impossible that you have a design that never uses const0, but I guess it is possible. Where did the design originate?
<sf-slack> <mbpeterson70> It's just a simple counter that I wrote (and then generated a bitstream for in Vivado) to get a feel for how fasm2bels worked.
<litghost> mbpeterson70: In the Vivado, if you run "get_property ROUTE [get_nets {<const0>}]" what do you get?
<litghost> e.g. on your original design