explicit import (no "import *")
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 11 Feb 2019 07:05:32 +0000 (07:05 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 11 Feb 2019 07:05:32 +0000 (07:05 +0000)
TLB/PermissionValidator.py
TLB/TLB.py

index ff1ee47233f9adf077506fbed6186dd2e69c5ab4..57cf286dd33c4767d14815c5cf5c68cd6dc4abf6 100644 (file)
@@ -1,4 +1,4 @@
-from nmigen import Signal, Module
+from nmigen import Signal, Module, If, Else
 from nmigen.cli import main
 
 # The purpose of this Module is to check the Permissions of a given PTE 
index c708419b4ec0bed6c9ad25ec1c16c046ccf32e5b..4727278bec4b2cc01f63a0c128d3c4bbb8e88e57 100644 (file)
@@ -1,4 +1,4 @@
-from nmigen import *
+from nmigen import Signal, Memory, Module, Case, If
 from nmigen.cli import main
 from PermissionValidator import PermissionValidator
 
@@ -63,4 +63,3 @@ class TLB():
         
 thing = TLB()
 print("Gottem")
-        
\ No newline at end of file