From: Florent Kermarrec Date: Thu, 12 Mar 2015 17:49:49 +0000 (+0100) Subject: genlib/io.py: fix copy/paste error (thanks rjo) X-Git-Tag: 24jan2021_ls180~2099^2~193 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bf28664cb470a69b74c300766164b01fc54c3fc5;p=litex.git genlib/io.py: fix copy/paste error (thanks rjo) --- diff --git a/migen/genlib/io.py b/migen/genlib/io.py index ecd061fa..ab0c3bed 100644 --- a/migen/genlib/io.py +++ b/migen/genlib/io.py @@ -16,4 +16,4 @@ class DifferentialInput(Special): @staticmethod def lower(dr): - raise NotImplementedError("Attempted to use a reset synchronizer, but platform does not support them") + raise NotImplementedError("Attempted to use a differential input, but platform does not support them")