update perm validator test
[soc.git] / src / TLB / PermissionValidator.py
index 14f01e4294f9215cec9eb4ec2866c5b42e5969a3..e3058cb24cd4cee0ac43a42583af5949ff0ee3b8 100644 (file)
@@ -1,7 +1,7 @@
 from nmigen import Module, Signal
 from nmigen.cli import main
 
-from PteEntry import PteEntry
+from .PteEntry import PteEntry
 
 class PermissionValidator():
     """ The purpose of this Module is to check the Permissions of a given PTE
@@ -64,4 +64,4 @@ class PermissionValidator():
                 m.d.comb += self.valid.eq(0)
         with m.Else():
             m.d.comb += self.valid.eq(0)
-        return m
\ No newline at end of file
+        return m