ZombieChicken has quit [Ping timeout: 260 seconds]
rohitksingh has joined ##openfpga
Degi has quit [Ping timeout: 265 seconds]
Degi has joined ##openfpga
rohitksingh has quit [Ping timeout: 240 seconds]
rohitksingh has joined ##openfpga
Bike has quit [Quit: Lost terminal]
_whitelogger has joined ##openfpga
ZombieChicken has joined ##openfpga
rohitksingh has quit [Ping timeout: 256 seconds]
<azonenberg> whitequark / anybody else familiar with the verilog/systemverilog standards
<azonenberg> What is the return type of $bits()?
<azonenberg> it's *probably* an integer but is it formally defined that way?
<daveshah> azonenberg: from the LRM
<daveshah> > The $bits system function returns the number of bits required to hold an expression as a bit stream. The
<daveshah> return type is integer. See 6.24.3 for a definition of legal types. A 4-state value counts as 1 bit.
<azonenberg> Ok
<azonenberg> Thanks
<azonenberg> Now i'm having problems with parameter arrays
<azonenberg> parameter [NAME_BITS-1:0] NAMES[CHANNELS-1:0]
<azonenberg> is there any problem with that?
<azonenberg> NAME_BITS and CHANNELS are both parameters declared earlier in the module
<azonenberg> vivado doesn't seem to want to synthesize it
<azonenberg> What i want to do is pass a variable-sized array of strings as a module parameter
<daveshah> I think you need to use packed syntax
<daveshah> parameter [NAME_BITS-1:0] [CHANNELS-1:0] NAMES
<azonenberg> The problem comes when i want to assign to it
<azonenberg> I want to be able to do foo #(.NAMES{"foo", "bar"})
<azonenberg> without explicitly padding out to NAME_BITS for each entry
azonenberg_work has quit [Ping timeout: 246 seconds]
<azonenberg> if it's packed, i think you'll get weird results
<azonenberg> the unpacked syntax works when used in a one module, but as soon as i use it in a different module (copy pasted exact same syntax) i get compilation failures that suggest parser errors
<azonenberg> i.e. complaining a port i have doesn't exist
<azonenberg> oh, innnteresting
<azonenberg> so it looks like it works as long as i always override the parameter
<azonenberg> i can't not specify a value
<daveshah> That's always needed for params isn't it, at least in classic Verilog?
<azonenberg> this is SV. And even in classic V you can have default values for parameters
<azonenberg> But it looks like for whatever reason, that doesn't work in this code
<daveshah> Oh, I thought you meant you weren't giving it a default value
<daveshah> misread, sorry
<daveshah> Suspect this is a Vivado bug
<azonenberg> What? those never happen
* azonenberg hides
azonenberg_work has joined ##openfpga
Asu has joined ##openfpga
<azonenberg> Achievement unlocked: got a "not implemented" error in vivado
<azonenberg> Lol
freemint has joined ##openfpga
oeuf has quit [Read error: Connection reset by peer]
oeuf has joined ##openfpga
OmniMancer has quit [Quit: Leaving.]
<tnt> Can someone explain how the 'ALIGNWD' works on the IDDRX2F ?
Asu has quit [Quit: Konversation terminated!]
Asu has joined ##openfpga
<whitequark> azonenberg: have you looked at how strings actually work in verilog?
<whitequark> no direct relation to your issue, just a curiosity
OmniMancer has joined ##openfpga
X-Scale` has joined ##openfpga
X-Scale has quit [Ping timeout: 268 seconds]
X-Scale` is now known as X-Scale
_whitelogger has joined ##openfpga
keesj has joined ##openfpga
Jybz has joined ##openfpga
freemint has quit [Ping timeout: 256 seconds]
freemint has joined ##openfpga
Bike has joined ##openfpga
lutsabound has joined ##openfpga
Lord_Nightmare has quit [Ping timeout: 256 seconds]
Lord_Nightmare has joined ##openfpga
<Finde> ugh verilog strings
<Finde> we have testbenches which take filenames to open as plusargs and they don't work across simulators
SpaceCoaster has quit [Quit: ZNC 1.6.5+deb1+deb9u2 - http://znc.in]
freemint has quit [Ping timeout: 240 seconds]
freemint has joined ##openfpga
mumptai has joined ##openfpga
cpresser has quit [Ping timeout: 256 seconds]
cpresser has joined ##openfpga
Guest31991 has quit [Ping timeout: 240 seconds]
ubuntu has joined ##openfpga
ubuntu is now known as Guest29988
lutsabound has quit [Quit: Connection closed for inactivity]
OmniMancer has quit [Quit: Leaving.]
<azonenberg> whitequark: They're not fun
<azonenberg> Finde: i found a vivado bug, still unfixed afaik, in which strings with embedded nul characters are handled wrong
<whitequark> azonenberg: i see you have indeed looked.
<whitequark> i found a yosys bug a while ago
<whitequark> where it assumed "" is a 0-width signal
<azonenberg> whitequark: oh it's worse than that
<azonenberg> vivado borks horribly if you have "foo\0bar"
<whitequark> yeah
<azonenberg> the LRM permits this
<whitequark> actually hang on, it's still not fixed it looks?
<azonenberg> The forum post was ignored essentially, nobody said they were going to do anything about it
<azonenberg> I havent tested recently
<azonenberg> my post "incorrect synthesis of strings containing 0x00 bytes in vivado 201.2 (also tested in 2016.x"
<azonenberg> ise 14.7 is the only tool i found that worked
Jybz has quit [Quit: Konversation terminated!]
<azonenberg> yosys failed in a different way, although i think it's since been fixed?
<azonenberg> if you look up the forum post, i replied to the guy's misunderstanding (confusing "" and "
<azonenberg> (confusing "" and "\0")
<azonenberg> and then the thread died - in 2017
<azonenberg> afaik no action was ever taken
<whitequark> azonenberg: the problem with yosys was that it'd emit "" in write_verilog if it needed a 0-width value
<whitequark> whereas the only thing LRM permits for that is {0{1'b0}}
<whitequark> which is kind of bizarre frankly
<whitequark> if they banned them completely, that'd be very inconvenient but understandable
<azonenberg> yeah my problem was that "foo\0" was synthesized as {8'hx, "foo"}
<azonenberg> or was it 8'hz? dont remember, either way
<azonenberg> the nul completely disappeared and the string got shifted
<whitequark> yeah
<whitequark> i suspect yosys has more bugs still, i should scour its codebase for those someday
<azonenberg> I've been out of the yosys game since $sidegig got me into systemverilog
<azonenberg> i now write 100% SV which is incompatible with yosys
<whitequark> there are a few (!) SV frontends now that can be glued onto yosys
<whitequark> two i think
<azonenberg> Although at some point i need to try synthing some of my current code with yosys and see exactly which features it chokes on
<azonenberg> verific is the only one i know of, which is either $$$$$ or noncommercial license afaik
<whitequark> no, i mean two FOSS SV frontends
<azonenberg> oh?
<whitequark> give me a sec to find them
<mwk> daveshah: so I just got badly burned by a hold time violation on spartan 6
<mwk> as it turns out, the OSERDES2 is one of the few primitives with significant non-negative hold time
<mwk> 1.27ns to be exact
<mwk> (according to the data sheet, though ise timing analyzer shows something different *sigh*)
<mwk> and nextpnr connects the relevant input to a FF output (cko 0.405 ns) via 0.332 ns routing
<mwk> so.... assuming I can somehow magically instantly obtain all relevant timing data, does nextpnr know how to deal with the problem (ie. insert extra delay)?
<mwk> or am I just completely screwed?
<daveshah> Nope, you'd need a pass to deal with this
<daveshah> There isn't even hold time analysis in master yet, although I can prioritise that now there is an actual use case for it
<daveshah> For now particularly without all the data the best hack is probably something that adds a couple of route through LUT1s on OSERDES inputs...
<mwk> ohhh
<mwk> yeah, LUT1s, that would work
<mwk> good idea, thanks
<daveshah> Heck, a crude hold timing fix up pass could even be done in Yosys for now
<daveshah> add LUT1s until the LUT depth at an input >= N
<mwk> (I mean, I also have *setup* time violations I need to take care of, but I'm hoping for general packing improvements to help with those)
<daveshah> Well, setup violations are easy, just reduce the clock :)
<mwk> there's a little problem
<mwk> the memory on the board I'm dealing with has a minimum clock requirement of 125MHz according to the data sheet
<daveshah> Is it DDR of some kind? Usually they work much lower than the minimum clock particularly if the DLL is disabled
<mwk> and the CPU is pegged to memory clock at 1:2
<daveshah> This has been my experience with litedram anyway
<mwk> hmm.
<mwk> it did not for me
<daveshah> Interesting
<mwk> but then, I didn't know about the hold violation stuff back then
<mwk> so perhaps it's nto the clock frequency that was the problem
<daveshah> Have you actually tested with the vendor tools? That would rule out the memory
<mwk> oh
<mwk> wait, I did
<mwk> or uhh
<mwk> okay, I tested with 20MHz I think
<mwk> I could try doing 75MHz
<mwk> that should fix the setup time problems at least
<daveshah> might be worth that
Bird|otherbox has quit [Remote host closed the connection]
mangelis has quit [*.net *.split]
adamgreig has quit [*.net *.split]
knielsen has quit [*.net *.split]
s_frit has quit [*.net *.split]
cr1901_modern has quit [*.net *.split]
Sprite_tm has quit [*.net *.split]
pie_[bnc] has quit [*.net *.split]
bibor has quit [*.net *.split]
craigjb has quit [*.net *.split]
tnt has quit [*.net *.split]
Marex has quit [*.net *.split]
davidc__ has quit [*.net *.split]
Sprite_tm has joined ##openfpga
mangelis has joined ##openfpga
s_frit has joined ##openfpga
adamgreig has joined ##openfpga
cr1901_modern has joined ##openfpga
knielsen has joined ##openfpga
pie_[bnc] has joined ##openfpga
craigjb has joined ##openfpga
tnt has joined ##openfpga
davidc__ has joined ##openfpga
Marex has joined ##openfpga
bibor has joined ##openfpga
brizzo has quit [Ping timeout: 240 seconds]
nickjohnson has quit [*.net *.split]
eddyb[legacy] has quit [*.net *.split]
Wolf480pl has quit [*.net *.split]
kc8apf has quit [*.net *.split]
digshadow has quit [*.net *.split]
jeandet has quit [*.net *.split]
mwk has quit [*.net *.split]
mithro has quit [*.net *.split]
goran-mahovlic has quit [*.net *.split]
scream has quit [*.net *.split]
jfng has quit [*.net *.split]
jn__ has quit [*.net *.split]
futarisIRCcloud has quit [*.net *.split]
unkraut has quit [*.net *.split]
daveshah has quit [*.net *.split]
esden has quit [*.net *.split]
_florent_ has quit [*.net *.split]
bubble_buster has quit [*.net *.split]
TAL has quit [*.net *.split]
felix_ has quit [*.net *.split]
pinoaffe has quit [*.net *.split]
kristianpaul has quit [*.net *.split]
henriknj has quit [*.net *.split]
brizzo has joined ##openfpga
kc8apf has joined ##openfpga
henriknj has joined ##openfpga
jfng has joined ##openfpga
futarisIRCcloud has joined ##openfpga
scream has joined ##openfpga
jn__ has joined ##openfpga
unkraut has joined ##openfpga
nickjohnson has joined ##openfpga
daveshah has joined ##openfpga
pinoaffe has joined ##openfpga
kristianpaul has joined ##openfpga
felix_ has joined ##openfpga
TAL has joined ##openfpga
esden has joined ##openfpga
bubble_buster has joined ##openfpga
_florent_ has joined ##openfpga
jeandet has joined ##openfpga
eddyb[legacy] has joined ##openfpga
mwk has joined ##openfpga
mithro has joined ##openfpga
goran-mahovlic has joined ##openfpga
Wolf480pl has joined ##openfpga
digshadow has joined ##openfpga
mumptai has quit [*.net *.split]
keesj has quit [*.net *.split]
ZombieChicken has quit [*.net *.split]
hackkitten has quit [*.net *.split]
show1 has quit [*.net *.split]
ZirconiumX has quit [*.net *.split]
ZipCPU has quit [*.net *.split]
miek has quit [*.net *.split]
seraxis has quit [*.net *.split]
Adluc has quit [*.net *.split]
simeonm has quit [*.net *.split]
marble has quit [*.net *.split]
cyrozap has quit [*.net *.split]
eddyb[legacy] has quit [Ping timeout: 247 seconds]
cyrozap has joined ##openfpga
simeonm has joined ##openfpga
marble has joined ##openfpga
mumptai has joined ##openfpga
keesj has joined ##openfpga
ZombieChicken has joined ##openfpga
hackkitten has joined ##openfpga
show1 has joined ##openfpga
ZirconiumX has joined ##openfpga
miek has joined ##openfpga
ZipCPU has joined ##openfpga
seraxis has joined ##openfpga
Adluc has joined ##openfpga
swedishhat[m] has quit [*.net *.split]
nrossi has quit [*.net *.split]
renze has quit [*.net *.split]
tlwoerner has quit [*.net *.split]
indy has quit [*.net *.split]
reportingsjr has quit [*.net *.split]
GenTooMan has quit [*.net *.split]
levi has quit [*.net *.split]
swetland has quit [*.net *.split]
indefini[m] has quit [Ping timeout: 245 seconds]
promach3 has quit [Ping timeout: 245 seconds]
henriknj has quit [Ping timeout: 240 seconds]
levi has joined ##openfpga
scream has quit [Ping timeout: 248 seconds]
jfng has quit [Ping timeout: 248 seconds]
futarisIRCcloud has quit [Ping timeout: 270 seconds]
emily has quit [Ping timeout: 252 seconds]
mithro has quit [Ping timeout: 246 seconds]
reportingsjr has joined ##openfpga
G33KatWork has quit [*.net *.split]
Hoernchen has quit [*.net *.split]
GenTooMan has joined ##openfpga
swetland has joined ##openfpga
G33KatWork has joined ##openfpga
Hoernchen has joined ##openfpga
tlwoerner has joined ##openfpga
xobs has quit [Ping timeout: 258 seconds]
tlwoerner has quit [Changing host]
tlwoerner has joined ##openfpga
renze has joined ##openfpga
anuejn has quit [*.net *.split]
vup has quit [*.net *.split]
benreynwar has quit [*.net *.split]
pakesson_ has quit [*.net *.split]
rektide has quit [*.net *.split]
tms_ has quit [*.net *.split]
Xark has quit [*.net *.split]
asy has quit [*.net *.split]
nats` has quit [*.net *.split]
cnomad has quit [*.net *.split]
grantsmith has quit [*.net *.split]
adamse has quit [*.net *.split]
sensille has quit [*.net *.split]
diamondman has quit [*.net *.split]
ovf has quit [*.net *.split]
sorear has quit [*.net *.split]
marex-cloud has quit [*.net *.split]
dx has quit [*.net *.split]
elms has quit [*.net *.split]
edmoore has quit [*.net *.split]
Ultrasauce has quit [*.net *.split]
jhol has quit [*.net *.split]
zkms has quit [*.net *.split]
indy__ has quit [*.net *.split]
yuriks has quit [*.net *.split]
m4t has quit [*.net *.split]
m4gul0_ has quit [*.net *.split]
guan has quit [*.net *.split]
_whitenotifier-3 has quit [*.net *.split]
mifune has quit [*.net *.split]
interruptinuse has quit [*.net *.split]
ovf has joined ##openfpga
diamondman has joined ##openfpga
m4t has joined ##openfpga
dx has joined ##openfpga
elms has joined ##openfpga
jhol has joined ##openfpga
Ultrasauce has joined ##openfpga
edmoore has joined ##openfpga
_whitenotifier-3 has joined ##openfpga
indy__ has joined ##openfpga
mifune has joined ##openfpga
guan has joined ##openfpga
grantsmith has joined ##openfpga
sensille has joined ##openfpga
adamse has joined ##openfpga
sorear has joined ##openfpga
marex-cloud has joined ##openfpga
m4gul0_ has joined ##openfpga
interruptinuse has joined ##openfpga
yuriks has joined ##openfpga
zkms has joined ##openfpga
azonenberg_work has quit [*.net *.split]
juri_ has quit [*.net *.split]
somlo has quit [*.net *.split]
specing has quit [*.net *.split]
tpw_rules has quit [*.net *.split]
Dolu has quit [*.net *.split]
clever has quit [*.net *.split]
tux3 has quit [*.net *.split]
nurelin has quit [*.net *.split]
kbeckmann has quit [*.net *.split]
awordnot has quit [*.net *.split]
Patater has quit [*.net *.split]
christiaanb has quit [*.net *.split]
parport0 has quit [*.net *.split]
duck2 has quit [*.net *.split]
russell-- has quit [*.net *.split]
hackerfoo has quit [*.net *.split]
eightdot has quit [*.net *.split]
lexano has quit [*.net *.split]
iximeow has quit [*.net *.split]
Lord_Nightmare has quit [*.net *.split]
balrog has quit [*.net *.split]
anticw_ has quit [*.net *.split]
Mimoja has quit [*.net *.split]
mmicko_ has quit [*.net *.split]
bsilvereagle has quit [*.net *.split]
TD-Linux has quit [*.net *.split]
mickdermack has quit [*.net *.split]
forrestv has quit [*.net *.split]
CounterPillow has quit [*.net *.split]
Finde has quit [*.net *.split]
finsternis has quit [*.net *.split]
Ekho has quit [*.net *.split]
FireFly has quit [*.net *.split]
m_hackerfoo has quit [*.net *.split]
OK_b00m3r has quit [*.net *.split]
omnitechnomancer has quit [Ping timeout: 245 seconds]
vup has joined ##openfpga
benreynwar has joined ##openfpga
rektide has joined ##openfpga
pakesson_ has joined ##openfpga
Xark has joined ##openfpga
anuejn has joined ##openfpga
tms_ has joined ##openfpga
nats` has joined ##openfpga
asy has joined ##openfpga
cnomad has joined ##openfpga
christiaanb has joined ##openfpga
parport0 has joined ##openfpga
russell-- has joined ##openfpga
hackerfoo has joined ##openfpga
azonenberg_work has joined ##openfpga
juri_ has joined ##openfpga
Dolu has joined ##openfpga
specing has joined ##openfpga
tpw_rules has joined ##openfpga
clever has joined ##openfpga
awordnot has joined ##openfpga
nurelin has joined ##openfpga
kbeckmann has joined ##openfpga
somlo has joined ##openfpga
Patater has joined ##openfpga
tux3 has joined ##openfpga
duck2 has joined ##openfpga
lexano has joined ##openfpga
eightdot has joined ##openfpga
iximeow has joined ##openfpga
Bike has quit [*.net *.split]
X-Scale has quit [*.net *.split]
Asu has quit [*.net *.split]
oeuf has quit [*.net *.split]
implr has quit [*.net *.split]
Maylay has quit [*.net *.split]
Sellerie has quit [*.net *.split]
feuerrot has quit [*.net *.split]
zeiris` has quit [*.net *.split]
MicroHex has quit [*.net *.split]
sgstair has quit [*.net *.split]
GityUpNow has quit [*.net *.split]
bgamari has quit [*.net *.split]
lopsided98 has quit [*.net *.split]
BeerSerc has quit [*.net *.split]
rvense has quit [*.net *.split]
Morn_ has quit [*.net *.split]
lain has quit [*.net *.split]
Xiretza has quit [*.net *.split]
dfgg has quit [*.net *.split]
marcan has quit [*.net *.split]
etrig has quit [*.net *.split]
fseidel has quit [*.net *.split]
danilonc has quit [*.net *.split]
eddyb has quit [Ping timeout: 256 seconds]
Asu has joined ##openfpga
X-Scale has joined ##openfpga
oeuf has joined ##openfpga
implr has joined ##openfpga
Sellerie has joined ##openfpga
Maylay has joined ##openfpga
MicroHex has joined ##openfpga
feuerrot has joined ##openfpga
GityUpNow has joined ##openfpga
bgamari has joined ##openfpga
lopsided98 has joined ##openfpga
Morn_ has joined ##openfpga
lain has joined ##openfpga
rvense has joined ##openfpga
dfgg has joined ##openfpga
fseidel has joined ##openfpga
danilonc has joined ##openfpga
Xiretza has joined ##openfpga
marcan has joined ##openfpga
etrig has joined ##openfpga
zeiris` has joined ##openfpga
BeerSerc has joined ##openfpga
Bike has joined ##openfpga
diamondman has quit [Ping timeout: 260 seconds]
yuriks has quit [Ping timeout: 260 seconds]
flammit has quit [*.net *.split]
q3k has quit [*.net *.split]
pointfree has quit [*.net *.split]
_franck_ has quit [*.net *.split]
stefanct has quit [*.net *.split]
Stary has quit [*.net *.split]
espes has quit [*.net *.split]
gruetzkopf has quit [*.net *.split]
Johnny_Mnemonic has quit [*.net *.split]
loxodes has quit [*.net *.split]
finnb has quit [*.net *.split]
pepijndevos has quit [*.net *.split]
florolf has quit [*.net *.split]
jemk has quit [*.net *.split]
whitequark has quit [*.net *.split]
orkim has quit [*.net *.split]
hl has quit [*.net *.split]
fibmod has quit [*.net *.split]
ktemkin has quit [*.net *.split]
emilazy has quit [*.net *.split]
wbraun has quit [*.net *.split]
kmehall_ has quit [*.net *.split]
kuldeep has quit [*.net *.split]
noopwafel has quit [*.net *.split]
awygle has quit [*.net *.split]
filt3r has quit [*.net *.split]
rqou has quit [*.net *.split]
Prf_Jakob has quit [*.net *.split]
balrog has joined ##openfpga
Lord_Nightmare has joined ##openfpga
bsilvereagle has joined ##openfpga
forrestv has joined ##openfpga
Finde has joined ##openfpga
mickdermack has joined ##openfpga
anticw_ has joined ##openfpga
finsternis has joined ##openfpga
FireFly has joined ##openfpga
Ekho has joined ##openfpga
m_hackerfoo has joined ##openfpga
mmicko_ has joined ##openfpga
TD-Linux has joined ##openfpga
Mimoja has joined ##openfpga
OK_b00m3r has joined ##openfpga
CounterPillow has joined ##openfpga
marex-cloud has quit [Ping timeout: 260 seconds]
indy__ has quit [Ping timeout: 260 seconds]
JSharp has quit [Ping timeout: 260 seconds]
sgstair has joined ##openfpga
eddyb[legacy] has joined ##openfpga
loxodes has joined ##openfpga
stefanct has joined ##openfpga
Stary has joined ##openfpga
gruetzkopf has joined ##openfpga
espes has joined ##openfpga
q3k has joined ##openfpga
flammit has joined ##openfpga
pointfree has joined ##openfpga
_franck_ has joined ##openfpga
Johnny_Mnemonic has joined ##openfpga
jemk has joined ##openfpga
orkim has joined ##openfpga
hl has joined ##openfpga
pepijndevos has joined ##openfpga
whitequark has joined ##openfpga
finnb has joined ##openfpga
florolf has joined ##openfpga
fibmod has joined ##openfpga
rqou has joined ##openfpga
emilazy has joined ##openfpga
wbraun has joined ##openfpga
kuldeep has joined ##openfpga
kmehall_ has joined ##openfpga
awygle has joined ##openfpga
Prf_Jakob has joined ##openfpga
filt3r has joined ##openfpga
noopwafel has joined ##openfpga
ktemkin has joined ##openfpga
kuldeep has quit [Max SendQ exceeded]
yuriks has joined ##openfpga
adamse has quit [Ping timeout: 260 seconds]
yuriks has joined ##openfpga
yuriks has quit [Changing host]
ovf has quit [Ping timeout: 260 seconds]
yuriks has joined ##openfpga
yuriks has quit [Changing host]
yuriks has joined ##openfpga
yuriks has quit [Changing host]
rohitksingh has joined ##openfpga
azonenberg has quit [Remote host closed the connection]
indy has joined ##openfpga
futarisIRCcloud has joined ##openfpga
kuldeep has joined ##openfpga
emilazy has quit [Ping timeout: 245 seconds]
emilazy has joined ##openfpga
pointfree has quit [Ping timeout: 252 seconds]
X-Scale has quit [Ping timeout: 258 seconds]
marex-cloud has joined ##openfpga
mithro has joined ##openfpga
azonenberg has joined ##openfpga
JSharp has joined ##openfpga
adamse has joined ##openfpga
indy__ has joined ##openfpga
pointfree has joined ##openfpga
X-Scale has joined ##openfpga
lutsabound has joined ##openfpga
diamondman has joined ##openfpga
ovf has joined ##openfpga
feuerrot has quit [Ping timeout: 240 seconds]
feuerrot has joined ##openfpga
mumptai has quit [Quit: Verlassend]
freemint has quit [Ping timeout: 240 seconds]
Asu has quit [Remote host closed the connection]
finstern1s has joined ##openfpga
mmicko has joined ##openfpga