summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/Uart.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/m5/objects/Uart.py')
-rw-r--r--src/python/m5/objects/Uart.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/python/m5/objects/Uart.py b/src/python/m5/objects/Uart.py
deleted file mode 100644
index 62062c6b1..000000000
--- a/src/python/m5/objects/Uart.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from m5.params import *
-from m5.proxy import *
-from m5 import build_env
-from Device import BasicPioDevice
-
-class Uart(BasicPioDevice):
- type = 'Uart'
- abstract = True
- sim_console = Param.SimConsole(Parent.any, "The console")
-
-class Uart8250(Uart):
- type = 'Uart8250'
-
-if build_env['ALPHA_TLASER']:
- class Uart8530(Uart):
- type = 'Uart8530'
-