From bf28664cb470a69b74c300766164b01fc54c3fc5 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 12 Mar 2015 18:49:49 +0100 Subject: [PATCH] genlib/io.py: fix copy/paste error (thanks rjo) --- migen/genlib/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migen/genlib/io.py b/migen/genlib/io.py index ecd061fa9..ab0c3bedd 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")