tpb has quit [Remote host closed the connection]
tpb has joined #yosys
kristianpaul has quit [Read error: Connection reset by peer]
kristianpaul has joined #yosys
emeb_mac has quit [Ping timeout: 260 seconds]
emeb_mac has joined #yosys
craigo has quit [Ping timeout: 264 seconds]
Degi has quit [Ping timeout: 256 seconds]
Degi has joined #yosys
emeb_mac has quit [Ping timeout: 246 seconds]
emeb_mac has joined #yosys
_whitelogger has joined #yosys
citypw has joined #yosys
benreynwar has quit [Ping timeout: 272 seconds]
benreynwar has joined #yosys
craigo has joined #yosys
craigo has quit [Remote host closed the connection]
craigo has joined #yosys
emeb_mac has quit [Quit: Leaving.]
craigo has quit [Ping timeout: 264 seconds]
citypw has quit [Quit: Leaving]
Asu has joined #yosys
az0re has joined #yosys
az0re has quit [Quit: Leaving]
lutsabound has joined #yosys
emeb has joined #yosys
craigo has joined #yosys
citypw has joined #yosys
citypw has quit [Ping timeout: 240 seconds]
klotz has joined #yosys
cr1901_modern has quit [Read error: Connection reset by peer]
cr1901_modern has joined #yosys
az0re has joined #yosys
emeb_mac has joined #yosys
lutsabound has quit [Quit: Connection closed for inactivity]
Nazara has joined #yosys
cr1901_modern has quit [Ping timeout: 260 seconds]
cr1901_modern has joined #yosys
klotz has quit [Quit: klotz]
klotz has joined #yosys
rlee287 has joined #yosys
klotz has quit [Ping timeout: 240 seconds]
klotz has joined #yosys
lutsabound has joined #yosys
freemint has joined #yosys
Asu has quit [Ping timeout: 240 seconds]
klotz has quit [Quit: klotz]
lf has quit [Ping timeout: 260 seconds]
lf has joined #yosys
_whitelogger has joined #yosys
nmz787 has joined #yosys
<
nmz787>
can I include/import/inherit a PCF in my PCF
<
nmz787>
like, I have the icebreaker.pcf... but some random VGA test design uses other names for it's TOP module inputs/outputs
<
nmz787>
I'd rather not have to duplicate+modify icebreaker.pcf for each design I play with
<
whitequark>
you can wrap the verilog for that vga test design
<
whitequark>
but in general you should probably duplicate the pcf
<
nmz787>
wrap the verilog meaning.... explicitly create a top module and instantiate the previously implicit top?
<
nmz787>
so multiple pins are combined into a bus in the PCF
<
nmz787>
I'm not sure how to emulate that when instantiating the module, but not having a bus
<
nmz787>
i.e. set_io RED[1] P1A2; set_io RED[0] P1A1
<
nmz787>
I guess I might be able to use an array of wires?
<
nmz787>
it doesn't seem to like this wire RED[3:0] = {P1A4, P1A3, P1A2, P1A1};